EXCEL TIPS AND TRICKS
SEARCHABLE DROPDOWN LIST
=FILTER(A2:A32,ISNUMBER(SEARCH(D1,A2:A32))
VLOOKUP: TO MATCH THE DATA WITH THE TEXT IN THE TABLE AUTOMATICALLY
Application of VLOOKUP:
To compare two sheets for values and Extract data from them.
=IFERROR(IF(C13<>0,VLOOKUP(C13,'RB-1'!$C$5:$M$44,11,0),""),"")
- if error→ eliminates #NA display
- If condition→ checks for blank cell and display the data extracted by VLOOKUP which matches C13 table in given sheet at 11th column. If incorrect display nothing. 0 means exactly at the same row.
INDEX function: Extracts data from the table address denoted by Match Function
MATCH Function: Shows the address of the cell, not data, containing the data.
Compare Two sheets For differences:
For example, if you sent the quotation and the clients send the last edited sheet for agreement, compare the one you sent and they said they agreed. Sometimes, they twist the words within.
One option we have is to view side by side.
Other is using the Formula.
searchable dropdown Lists
=IFERROR(VLOOKUP(ROWS($E$3:E3),D3:E43,2,0),"")
INDEXMATCH
SUMIF:
IF the column consists of the same data repeated over and over, and you have to add their quantity which lies in a different column together, This function is used. One column act as a Source range and the other as a sum range.
dependable dropdown list
TODAY'S DATE AUTOMATIC: =TODAY()→ TODAYS DATE EVERYDAY, AUTOMATICALLY UPDATE BY FORMULA
CTRL+; → TODAYS DATE: JUST TO GET VALUE OF TODAY. TOMORROW IT WON'T UPDATE
data entered in 11/30/2021
|
IF FOUND |
_ _ISNUMBER(SEARCH($M$15,G14)) |
|||
|
FREQUENCY |
IF(H14=1,COUNTIF($H$14:$H14,1),"") |
|||
|
SEARCHABLE |
INDEX($a$2:$a$88,match(rows($C$2:$C2),$C$2:$C$88,0) |
|||
|
keep neat and tidy |
IFERROR(INDEX($G$14:$G$21,MATCH(ROWS($I$14:$I14),$I$14:$I$21,0)),"") |
|||
Highlight differences between 2 sheets with conditional formatting
To highlight cells that have different values in two sheets with the color of your choosing, use the Excel conditional formatting feature:
- In the worksheet where you want to highlight differences, select all used cells. For this, click the upper-left cell of the used range, usually A1, and press Ctrl + Shift + End to extend the selection to the last used cell.
- On the Home tab, in the Styles group, click Conditional Formatting > New rule, and create a rule with the following formula:
=A1<>Sheet2!A1





Comments
Post a Comment