Hi, I'm trying to move my value column to mirror the text column.
For instance, if there's text in the G/L CATEGORIES (DR) column keep G/L CATEGORIES (DR) value data in the G/L CATEGORIES (DR) data column but if there's text in the G/L CATEGORIES (CR) column then value from G/L CATEGORIES (DR) value column to the G/L CATEGORIES (CR) value column.
Tried using the multirow tool with the following formula but it did not work out for me:
if !isnull([G/L Categories (DR)]) And isnull([G/L Categories (CR)]) then
[[Row+1:Value]+1]]
else
[[Row-1:Value]]
endif