I am trying to do an if/then statement that will take text in column B and calculate the formula in column C to give me an amount then to leave it blank if there isn’t a match.
Column D’s operation would be the same with different search word.
In other words, I would like to have all of column B calculate the PreCan orders.
Column D would calculate the 1st Class orders.
I’ve tried
=if(search("PreCan",B2)),"(=(C2*.0349)","")
=if("PreCan",B2)),"(C2*.0349)","")
Column D’s operation would be the same with different search word.
In other words, I would like to have all of column B calculate the PreCan orders.
Column D would calculate the 1st Class orders.
| A | B | C | D |
1 | Quantity | Postage type | PreCan STD | 1st Class |
2 | 468 | PreCan STD | =A2*.0349 | |
3 | 1 | 1st Class | =A3*.60 |
I’ve tried
=if(search("PreCan",B2)),"(=(C2*.0349)","")
=if("PreCan",B2)),"(C2*.0349)","")