My data looks like this:
A B
12000 100
14000 200
31000 500
33000 600
What is the formula I should use for this:
If left(A,1>1) then add column B
so that result = 1100
Some more explanation of the problem:
If the first digit of any number in Col A is greater than 1 (eg. those starting with 3) then add up the amounts in Col B. So that the answer returns 500 + 600 = 1100.
Bookmarks