search
HomeTopicsexcelexcel financial functions

excel financial functions

Jul 25, 2019 pm 04:40 PM
excel

excel financial functions

If you want to know more about excel functions, you can click: Excel Tutorial

This is a comprehensive collection of Excel formulas commonly used in financial accounting. There are 21 in total. I hope it will be useful to friends who work in financial accounting.

1. Text and percentage connection formula

If connected directly, the percentage will be displayed in numbers and needs to be formatted with the Text function before connecting.

='Profit completion rate this month'&TEXT(C2/B2,'0%')

excel financial functions

##2. Account Aging analysis formula

Use the lookup function to divide the aging interval

=LOOKUP(D2,G$2:H$6)

If you do not use the auxiliary area , you can use the constant array

=LOOKUP(D2,{0,'less than 30 days';31,'1~3 months';91,'3~6 months';181,'6- 1 year';361,'greater than 1 year'})

excel financial functions

##3. Masking error value formulaDisplay the error value generated by the formula as empty

Formula: C2=IFERROR(A2/B2,'')

Description: If it is an error value, it will be displayed as empty, otherwise it will be displayed normally .

excel financial functions

4. Completion rate formula As shown in the figure below, the requirements are based on the actual situation of B and C Column the budget number and calculate the completion rate.

Announcement: E2=IF(C3

excel financial functions

##5, year-on-year growth rate formula

As shown in the figure below, column B is the accumulation for this year, and column C is the accumulation for the same period last year. It is required to calculate the year-on-year growth rate.

Announcement: E2=(B2-C2)/ IF(C2>0,C2,-C2)

excel financial functions##6. Amount case formula

=TEXT(LEFT(RMB(A2),LEN(RMB(A2))-3),'[>0][dbnum2]G/general format element;[

excel financial functions7. Multi-condition judgment formula

Formula: C2=IF(AND(A2Instructions: Use AND if two conditions are true at the same time, use the OR function if either condition is true.

excel financial functions8. Single condition search formula

Formula 1: C11=VLOOKUP(B11,B3:F7,4,FALSE)

excel financial functions9、 Bidirectional search formula

Formula: =INDEX(C3:H7,MATCH(B10,B3:B7,0),MATCH(C10,C2:H2,0 ))

Instructions: Use the MATCH function to find the location and the INDEX function to get the value

excel financial functions10. Multi-condition search formula

Formula: C35=Lookup(1,0/((B25:B30=C33)*(C25:C30=C34)),D25:D30)

excel financial functions11. Single condition summation formula

Formula: F2=SUMIF(A:A,E2,C:C)

excel financial functions12. Multi-condition summation formula

=Sumifs(c2:c7,a2:a7,a11 ,b2:b7,b11)

excel financial functions13. Alternate column summation formula

Formula H3:=SUMIF($A$2:$G$2,H$2,A3:G3)

If there is no title, you can only use a slightly more complicated formula.

=SUMPRODUCT((MOD(COLUMN(B3:G3),2)=0)*B3:G3)

excel financial functions

14. Summing multiple tables at the same position

Formula: b2=SUM(Sheet1:Sheet19!B2)

Description: After deleting or adding a table in the middle of the table, the formula Results are updated automatically.

excel financial functions

15. Find two identical formulas

Formula: B2=COUNTIF(Sheet15!A: A,A2)

Note: If the return value is greater than 0, it means it exists in another table, 0 means it does not exist.

excel financial functions

16. Multi-condition verification of data from two tables

As shown in the figure below, it is required to check the two tables The quantity difference of the same product and the same model is displayed in column D.

Formula: D10=SUMPRODUCT(($A$2:$A$6=A10)*($B$2:$B$6=B10)*$C$2:$C$6)-C10

excel financial functions

17. Personal tax calculation

If A2 is taxable salary, the formula for calculating personal tax is: = 5*MAX(A2*{0.6,2,4,5,6,7,9}%-{21,91,251,376,761,1346,3016},)

18. Accounting accounts Interception formula

First-level subject:=LEFT(B3,FIND('-',B3)-2)

Second-level subject:=MID(B3,FIND ('-',B3) 2,FIND('-',B3&'-',FIND('-',B3) 1)-FIND('-',B3)-3)

Level 3 Subject: =MID(B3,FIND('-',B3&'-',FIND('-',B3) 1) 2,100)

excel financial functions

19. Summarize formulas at the same position in multiple tables

If the formats of multiple worksheets are exactly the same, you can use the multi-table sum function of the sum function.

As shown in the figure below, it is required to set a total formula in the summary table to summarize the sum of column B of the first 19 worksheets.

B2 =SUM(Sheet1:Sheet19!B2)

excel financial functions

##20, Chinese ranking formula

Formula:C12=SUMPRODUCT(($D$4:$D$9>=D4)*(1/COUNTIF(D$4:D$9,D$4:D$9)))

excel financial functions

21. First-in-first-out formula

Reminder: This formula is a very difficult formula and is not recommended for novices and those who are struggling to use it. To understand, it is only for reference by intermediate and advanced users of Excel.

Definition name:

Lj=SUBTOTAL(9,OFFSET(!$E$2,,,ROW()-1))-SUBTOTAL(9,OFFSET(!$B$2,,, ,ROW(!$B$1:$B9)))

G3 formula:

{=SUMPRODUCT(IF(lj>$B$3:B3,$B$3:B3,lj) ,IF(lj>0,$C$3:C3))-SUM($G$2:G2)}

excel financial functions

The above is the detailed content of excel financial functions. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MEDIAN formula in Excel - practical examplesMEDIAN formula in Excel - practical examplesApr 11, 2025 pm 12:08 PM

This tutorial explains how to calculate the median of numerical data in Excel using the MEDIAN function. The median, a key measure of central tendency, identifies the middle value in a dataset, offering a more robust representation of central tenden

Google Spreadsheet COUNTIF function with formula examplesGoogle Spreadsheet COUNTIF function with formula examplesApr 11, 2025 pm 12:03 PM

Master Google Sheets COUNTIF: A Comprehensive Guide This guide explores the versatile COUNTIF function in Google Sheets, demonstrating its applications beyond simple cell counting. We'll cover various scenarios, from exact and partial matches to han

Excel shared workbook: How to share Excel file for multiple usersExcel shared workbook: How to share Excel file for multiple usersApr 11, 2025 am 11:58 AM

This tutorial provides a comprehensive guide to sharing Excel workbooks, covering various methods, access control, and conflict resolution. Modern Excel versions (2010, 2013, 2016, and later) simplify collaborative editing, eliminating the need to m

How to convert Excel to JPG - save .xls or .xlsx as image fileHow to convert Excel to JPG - save .xls or .xlsx as image fileApr 11, 2025 am 11:31 AM

This tutorial explores various methods for converting .xls files to .jpg images, encompassing both built-in Windows tools and free online converters. Need to create a presentation, share spreadsheet data securely, or design a document? Converting yo

Excel names and named ranges: how to define and use in formulasExcel names and named ranges: how to define and use in formulasApr 11, 2025 am 11:13 AM

This tutorial clarifies the function of Excel names and demonstrates how to define names for cells, ranges, constants, or formulas. It also covers editing, filtering, and deleting defined names. Excel names, while incredibly useful, are often overlo

Standard deviation Excel: functions and formula examplesStandard deviation Excel: functions and formula examplesApr 11, 2025 am 11:01 AM

This tutorial clarifies the distinction between standard deviation and standard error of the mean, guiding you on the optimal Excel functions for standard deviation calculations. In descriptive statistics, the mean and standard deviation are intrinsi

Square root in Excel: SQRT function and other waysSquare root in Excel: SQRT function and other waysApr 11, 2025 am 10:34 AM

This Excel tutorial demonstrates how to calculate square roots and nth roots. Finding the square root is a common mathematical operation, and Excel offers several methods. Methods for Calculating Square Roots in Excel: Using the SQRT Function: The

Google Sheets basics: Learn how to work with Google SpreadsheetsGoogle Sheets basics: Learn how to work with Google SpreadsheetsApr 11, 2025 am 10:23 AM

Unlock the Power of Google Sheets: A Beginner's Guide This tutorial introduces the fundamentals of Google Sheets, a powerful and versatile alternative to MS Excel. Learn how to effortlessly manage spreadsheets, leverage key features, and collaborate

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.