pankajgrover
Board Regular
- Joined
- Oct 27, 2022
- Messages
- 157
- Office Version
- 2021
- Platform
- Windows
Copy column values from another sheet but want to exclude some specific row name completely . in example in B2 i want to exclude complete row name "Samsung" & "Netflix". how to do that ?
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2:A17 | A2 | =IF(raw_data!A2="","",DATEVALUE(TEXT(raw_data!A2,"dd/mm/yyyy"))) |
B2:B17 | B2 | =IF(raw_data!C2="","",REPLACE(raw_data!C2,1,3,"")) |
C2:E17 | C2 | =IF(raw_data!D2="", "",raw_data!D2) |
F2:F17 | F2 | =IFERROR([@Qty]*[@Price],"") |
Named Ranges | ||
---|---|---|
Name | Refers To | Cells |
all | =raw_data!$A$2:$G$989 | A2 |