i got an excel with 1000 records, I want to delete the row in my excel if columns C, D and E has #N/A value, i have tried few code from forums but it didn't work. pls help me. here is the example
A | B | C | D | E |(columns)
1 | LA | L | #N/A | #N/A
2 | LA | L | #N/A | L
3 | LA | #N/A| #N/A | L
4 | LA | #N/A| #N/A | #N/A ---- Delete this row
5 | BA | #N/A | #N/A | L
6 | CA | #N/A | #N/A | #N/A -----Delete this row
Give this a try:
Alternate, using a find loop and deleting the found rows all at once at the end: