I have three columns that I want to do some calculation on.
DAYS, HOURS and PARTIAL DAY HOURS
The formula is in the HOURS column and looks to the PARTIAL DAY HOURS column to see if its blank. If its blank I want to take the value in days and multiply it by 8. If the value in PARTIAL DAY HOURS is NOT blank then I want the Value in PARTIAL DAY HOURS in the HOURS column. I've tried the following but its just not working for some reason
=If(ISBLANK([Partial Day Hours]@row), ([Days]*8)@row, [Partial Day Hours]@row)
Its probably something very subtle I'm missing but I'm not seeing it
Thanks in advance