I created two reports.
In one report I count the number of applications that we received in a month using the following formula.
Formula:
//{@APRIL}:
If month ({TABAPP.APPDATE}) = 4 then 1 else 0
Then I insert the sum summary on the above formula.
In second report I count the number of application that we received that are consider to be a priority filing in each month using the following formula .
Formula:
//{@APRIL}:
If month ({TABAPP.PRIORITYDATE}) = 4 then 1 else 0
Then I insert the sum summary on the above formula.
Basically, I need to subtract the total # number of application (formula #1) from the total # of priority applications .
How do I set up a shared variable that will subtract my values for each month?
In one report I count the number of applications that we received in a month using the following formula.
Formula:
//{@APRIL}:
If month ({TABAPP.APPDATE}) = 4 then 1 else 0
Then I insert the sum summary on the above formula.
In second report I count the number of application that we received that are consider to be a priority filing in each month using the following formula .
Formula:
//{@APRIL}:
If month ({TABAPP.PRIORITYDATE}) = 4 then 1 else 0
Then I insert the sum summary on the above formula.
Basically, I need to subtract the total # number of application (formula #1) from the total # of priority applications .
How do I set up a shared variable that will subtract my values for each month?