Goal:
I'm basing this "costing" formula off of a cell that is in % format, the format in the "costing" cell is $.
If Percent8 Cell is x THEN this #
0 through 0.43 = 50
0.44 through 0.90 = 75
0.91 through 1.00 = 100
What is wrong with my formula? I keep getting an #unparaseable message
=IF(AND(Percent8 >= 0, Percent8 <= 0.43), 50, IF(AND(Percent8 >= 0.44, Percemt8 <= 0.90), 75, IF(AND(Percent8 >= 0.91, Percent8 <= 1.00), 100))))