HockeyDiablo
Board Regular
- Joined
- Apr 1, 2016
- Messages
- 182
I would like to do an IF formula, but with VBA
I have information in Column"Q" "Alphanumeric string 255 max char" with note based descriptions
I have a blank Column"R"
Formula in "R2" =IF(ISNUMBER(SEARCH(" sc ",Q2)),"Service Call","") **Id like to do multiple conditions: SC or sc or S/C or s/c
I have about 39,000 rows to do this with, which is why I would like to try in VBA.
What if I needed a different instance?
=IF(ISNUMBER(SEARCH(" sp ",Q2)),"Springs","") **Multiple conditions...
=IF(ISNUMBER(SEARCH(" Amarr",Q2)),"Door","") **Multiple conditions...
Thanks
I have information in Column"Q" "Alphanumeric string 255 max char" with note based descriptions
I have a blank Column"R"
Formula in "R2" =IF(ISNUMBER(SEARCH(" sc ",Q2)),"Service Call","") **Id like to do multiple conditions: SC or sc or S/C or s/c
I have about 39,000 rows to do this with, which is why I would like to try in VBA.
What if I needed a different instance?
=IF(ISNUMBER(SEARCH(" sp ",Q2)),"Springs","") **Multiple conditions...
=IF(ISNUMBER(SEARCH(" Amarr",Q2)),"Door","") **Multiple conditions...
Thanks