I am trying to create a formula which looks at a number in a cell D6 and applies the following tests in cell T6
the length > 10 digits
the first four digits does not equal 9000,8000,7000
if all four (4) tests pass then and the the bring in a number from cell E6 otherwise 0.
my ‘=IF(AND(LEN($D6)>10,LEFT(($D6,4)*19000),LEFT(($D6,4)*18000),LEFT(($D6,4)*17000),$E6,0))
Any one have any ideas where the BUG in the formula is?