Excel_Formulas_List
Excel_Formulas_List
=IF(A1>50, 'Pass', 'Fail') Logical test Returns 'Pass' if A1 > 50, otherwise 'Fail'
=VLOOKUP(1001, A2:D10, 2, FALSE) Finds a value in a table Searches for 1001 in A and returns from column 2
=HLOOKUP(1001, A1:D2, 2, FALSE) Horizontal lookup Searches row-wise and returns a value
=MATCH(50, A1:A10, 0) Returns position of value Finds the row number where 50 appears
=INDEX(A1:C10, 3, 2) Returns value from specific row/column Returns value at row 3, column 2 in A1:C10
=MID(A1, 2, 5) Extracts from the middle Returns 5 characters starting from position 2
=NOW() Returns current date & time Displays the current system date and time
=PROPER(A1) Capitalizes first letter of each word Converts 'hello world' to 'Hello World'
=RANDBETWEEN(1, 100) Generates a random integer Returns a random number between 1 and 100