I have a fixed row table with four rows. I want to multiply any values in Row 1 by -1, otherwise if not in Row 1, don't multiply by -1. I'm thinking an IF statement with the INDEX function should work, but I'm not clear on the syntax.
Perhaps something like this:
=IF(INDEX(vProjectCost.Year_0,1),MULT(vProjectCost.Year_0,-1),MULT(vProjectCost.Year_0,1))
This formula doesn't appear to return anything, so I'd appreciate it if someone could take a look and let me know if I'm heading in the right direction or not.
Thanks.