I need to create If statements that works across two columns.
Suppose if I have two columns A and B, I need to enter data in A and it should automatically enter the corresponding value of that data into B.
The values in column A are percentage based and only two, 100% and 150%. Each of those values represent distinct values. 100% will always mean 12500 and 150% will always mean 18750.
I need both the conditions at the same time as I may enter either of the values in Column A (and sometimes not at all, I can skip some cells as well). Column B should also be empty (no 0 is no value, but empty cells) unless I enter the value in A.
I tried making an If statement, but it only works for one condition ( I don’t know how to make two If conditions) and If there is no value in A, then the subsequent cell in B is filled with 0, which is not what I want.
Thank you for your help!