Hello! I'm having issues on constructing with the multi-row formula tool a formula that is easily done in Excel files. I did search for a solution but couldn't find an answer for it. I'm trying to create two new columns on my data that reference each other (circular reference).
Example:
*Take F G H as already existing numeric columns in the database.
New Column A=
if F=1,
then (if G>H, then H, else G)
else (if Row-1:New Column B>H, then H, else Row-1:New Column B)
endif
New Column B=
if F=1,
then G-New Column A
else Row-1:New Column B-New Column A
endif
Does anyone have a clue of what I could do? Thanks for anything!