Create a new column and name it "Approved".
Add a formula for the column:
If( :Status == "APPROVED", :TransactionAmount, .);
Add a second column and name it "Declined
Add the following formula to it
if( :Status == "DECLINED", :TransactionAmount, .);
Jim