Hello all,
Good day.
I have excel sheet in the below format.
If status is "No" I need to remove and move the data in to sheet 2.
Answer :
Please help me to provide VBA Code.
Good day.
I have excel sheet in the below format.
Excel 2013/2016 | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | Asset tag | CIIM Asset ID | Status | ||
2 | E290220 | 2118195 | Yes | ||
3 | E290085 | 2118571 | Yes | ||
4 | E291308 | 2119523 | Yes | ||
5 | E419024 | 2127131 | No | ||
6 | E452404 | 2128911 | Yes | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | =T("E290220") | |
A3 | =T("E290085") | |
A4 | =T("E291308") | |
A5 | =T("E419024") | |
A6 | =T("E452404") | |
B2 | =T("2118195") | |
B3 | =T("2118571") | |
B4 | =T("2119523") | |
B5 | =T("2127131") | |
B6 | =T("2128911") |
If status is "No" I need to remove and move the data in to sheet 2.
Answer :
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | =T("E419024") | |
B2 | =T("2127131") |
Please help me to provide VBA Code.