S.
NoFormula Syntax/Description Example
. VLOOKUP #NAME? Find a product price by its code in a table.
. HLOOKUP #NAME? Find a student's marks in a row by subject.
. INDEX #NAME? Get the value at row 2 and column 3 of a table.
. MATCH #NAME? Find the position of 'Apple' in a list.
. XLOOKUP #NAME? Find the sales data for a product ID.
. OFFSET #NAME? Get the reference for a cell 2 rows down and 1 column right.
. IF #NAME? Return 'Pass' if marks > 40, else 'Fail'.
. IFS 0 Return 'A' for >=90, 'B' for >=80, etc.
. AND 0 Check if all conditions (A1 > 0, A2 > 0) are true.
. OR 0 Check if either A1 > 0 or A2 > 0 is true.
. NOT #NAME? Reverse TRUE to FALSE and vice versa.
. CONCATEN 0 Combine 'First' and 'Last' into 'FirstLast'.
. TEXTJOIN 0 Combine names with commas: John, Jane, Joe.
. LEFT #NAME? Get the first 5 characters of a name.
. RIGHT #NAME? Get the last 3 characters of an account number.
. MID #NAME? Extract 3 characters starting from the 2nd.
. TRIM #NAME? Remove extra spaces from a sentence.
. LEN #NAME? Count the number of characters in a string.
. FIND #NAME? Find the position of 'day' in 'Monday'.
. SUBSTITUT #NAME? Replace 'day' with 'night' in 'Monday'.
. SUMIF #NAME? Sum sales for 'East' region.
. SUMPROD 0 Calculate total revenue = Units * Price.
. ROUND #NAME? Round 2.678 to 2 decimal places: 2.68.
. ROUNDUP #NAME? Round 2.1 to the next whole number: 3.
. ROUNDDO #NAME? Round 2.9 down to the whole number: 2.
. MOD #NAME? Find the remainder of 10/3: 1.
. CEILING #NAME? Round 11.25 up to the nearest 0.5: 11.5.
. FLOOR #NAME? Round 11.25 down to the nearest 0.5: 11.0.
. RAND 0.0268298531571251 Generate a random number between 0 and 1.
. RANDBET #NAME? Generate a random integer between 1 and 10.
. TODAY 45640 Show today's date: 12-Dec-2024.
. NOW 45640.3043173189 Show the current date and time.
. DATE #NAME? Create 01-Jan-2024 from year, month, day.
. DATEDIF #NAME? Days between 01-Jan-2024 and 12-Dec-2024.
. EDATE #NAME? Add 3 months to 12-Dec-2024.
. NETWORK #NAME? Count workdays from 01-Dec to 12-Dec.
. UNIQUE #NAME? List unique products in a sales table.
. SORT #NAME? Sort sales data by revenue in descending order.
. FILTER #NAME? Filter sales data where region = 'East'.
. SEQUENCE #NAME? Create numbers 1 to 10 in a sequence.
. IFERROR #NAME? Return 'OK' or 'Error' for calculations.
. IFNA #NAME? Replace #N/A with 'Not Found'.
. ERROR.TYP 5 Return error type (e.g., #DIV/0! as 2).
. AVERAGEI #NAME? Average sales for 'East' region.
. COUNTIF #NAME? Count orders where region = 'East'.
. LARGE #NAME? Find the 2nd highest revenue.
. SMALL #NAME? Find the smallest value in a dataset.
. PMT #NAME? Calculate monthly loan payment: $500.
. NPV 0 Calculate the net present value of cash flows.
. IRR #NAME? Calculate the internal rate of return.