I am trying to do some data scrubbing and I want to find the best way to assign a specific account # with a tax type.
For Example:
Account # 12345 - Tax Type MISC1
Account # 98765 - Tax Type N/R
I am trying to use the ELSE IF function: IF [Acct] = '98765' THEN [Tax Type] = 'N/R' ELSE ________END IF
My question is: What do I put for the ELSE? I want the value to remain as its current value if it is NOT the specified account #. I keep getting the Malformed IF statement, when I don't include ELSE.
Example:
Account 22565, the Tax Type should remain Current Value
Account 12345, the Tax Type should be MISC1
Account 98765, the Tax Type should be N/R
Attached is some fake data for your reference. Any help is appreciated!