Hello,
If anyone familiar with Excel could offer some help that would be very appreciated. I don’t think this puzzle is too difficult.
=IF(E12=“x”,M12=H12*1.2)
This is what I have at the moment but it’s not doing what I want; rather it is simply returning a value “True”.
I have a table. If an x or an X is placed in the E column, I would like the program to take the numerical value which has been input to the H column of the same row and multiply that value by 1.2. If there is no x in the E column, then the H column value should stay the same.
Ultimately I want to be able to add all the results together from multiple rows for a total at the bottom as well.
eg (showing just the E and H columns)
X……1
……..1
Total 2.2
eg 2
X…..1
X…..1
Total 2.4
eg 3
…….1
…….1
Total 2
The M column in my above formula is there because I have the idea stuck in my head that I would have to re-print each of the values whether multiplied by 1.2 or not in order to add them all up at the end. If there is a way to skip that I would rather use that way.
Thanks in anticipation :)