Forum Discussion
Anonymous
5 years agoNot applicable
Need a filter based on transaction level
Need a filter based on the below sample data, transaction level Please help
tex628
5 years agoCommunity Champion
Try this:
Column =
VAR D = Table [DEBIT]
VAR C = Table [CREDIT]
Return
IF(
C = BLANK() && D <> BLANK() , "ONLY CR" ,
IF(
D = BLANK() && C <> BLANK() , "ONLY DR" ,
IF(
C <> BLANK() && D <> BLANK() , "CR & DR" ,
IF(
D = BLANK() && C = BLANK() , "ZERO" ,
BLANK()
)