I have a table with a drop down list with two values: '$' and 'Hr' (cell called 'PType'). There is a cell called 'Proposed' that contains numerical data. The table is dynamic and can have more cells inserted via a button within the row. I have a totals section that I want to total the SUM of 'Proposed' if the value in 'PType' is '$'. I can't figure out what type of statement will allow me to write this.
For now, my solution has been a hidden column whose cell simply states:
if (PType == "$") then
Proposed
endif
Then, in the totals section, I sum this hidden column since a value outside of '$' returns a '0' and won't affect my SUM.
I am looking for a formula I can write that does this within the totals cell instead of having two cells.
Thanks,
Mallard27