Saturday, September 8, 2018

Generate a Credit Card Transaction Report/List to Display the Amounts per Card Type in Separate Columns

To generate a Credit Card Transaction Report/List which will show the amounts per card type in separate columns, users can perform the following steps:

1. Navigate to Transactions > Customers > View Credit Card Transactions.

2. Click on Customize View button.

2. Under the Results tab, remove the unnecessary fields, may retain Date only.

3. Click the More Options button to be routed to the Customize Saved Search page.

4. In the next available rows under the Results tab, enter the following formulas: 

 

FieldSummary TypeFormulaSummary Label
DateGroup  
Formula (Currency)SumNVL(CASE {cardtype} when 'VISA' THEN {cardtranamount} END,0)VISA
Formula (Currency)SumNVL(CASE {cardtype} when 'Master Card' THEN {cardtranamount} END,0)MasterCard
Formula (Currency)SumNVL(CASE {cardtype} when 'Discover' THEN {cardtranamount} END,0)Discover
Formula (Currency)SumNVL(CASE {cardtype} when 'American Express' THEN {cardtranamount} END,0)AMEX
Formula (Currency)SumNVL(CASE {cardtype} when 'American Express' THEN {cardtranamount} END,0)+NVL(CASE {cardtype} when 'VISA' THEN {cardtranamount} END,0)+NVL(CASE {cardtype} when 'Master Card' THEN {cardtranamount} END,0)+NVL(CASE {cardtype} when 'Discover' THEN {cardtranamount} END,0)TOTAL

5. Rename the Search Title

6. Click Save.

 

 

No comments:

Post a Comment