VoG I am doing calculations from one cell into other cells @ different amounts. The following codes work:
mpFormulae(2) = "=SUM(RC[-7] * IF(RC[-7] > 14994, 5%, 6%))"
mpFormulae(3) = "=SUM(RC[-8] * IF(RC[-8] > 14994, 7%, IF(RC[-8] > 10994, 6.5%, IF(RC[-8] > 5598, 3%, 3% ))))"
mpFormulae(4) = "=SUM(RC[-9] * IF(RC[-9] > 14994, 7%, IF(RC[-9] > 10994, 6.5%, IF(RC[-9] > 5598, 3%, 3% ))))"
The one I am having trouble with is based on a conditional cell containing "Fin", this needs to return a different calculation. If this cell contains "Fin" I need to calculate 1% if the value is different I need it to calculate 3%
Thanks for your help
Keith