I work for a medical billing company, and I'm working on a report for the company president. He wants to have a report that shows collections, payments, adjustments and charges against an account, and then percentages of different combinations of the above.
At the moment I've got a report with a subreport inside. The reason for doing this is I have the main report locked to values greater than "0", and the subreport allowing negative numbers.
What we are trying to get is a cross-tab that says something like this:
Net Collections XXXXXXX (ammount)
Charges -XXXXXXX (ammount)
Sum of Net Collections-Charges
The problem with the charges is we only want to pass certain fields to the charges field. Eg. Professional Courtesy, Write Offs, Charity, etc...
My formula at the moment in the subreport reads:
(if {COL.BC} in ["225", "235", "236", "237", "241", "280"]
then
(if {COL.BC}= "235" then "Bad Debt"
else
if {COL.BC}="237" then "Bad Debt"
else
if {COL.BC}="241" then "Professional Courtesy"
else
if {COL.BC}="225" then "Charity"
else
if {COL.BC}="236" then "Small Balance Write-off"
else
if {COL.BC}="280" then "Timely Filing")
else
"All other adjustments")
Is there a way to use distinctcounthere?
I need a way to suppress all other data and show only the fields in the array above.
Any Help on how to get this to work, without a sub-report would be best, would be greatly appreciated.
I'm using v.7 at them moment, but we are planning on an upgrade to v.9 or v.10 in the next two weeks, so info for those would be nice if it's more appropriate.
Thanks in advance.
Jonathan Shirts
At the moment I've got a report with a subreport inside. The reason for doing this is I have the main report locked to values greater than "0", and the subreport allowing negative numbers.
What we are trying to get is a cross-tab that says something like this:
Net Collections XXXXXXX (ammount)
Charges -XXXXXXX (ammount)
Sum of Net Collections-Charges
The problem with the charges is we only want to pass certain fields to the charges field. Eg. Professional Courtesy, Write Offs, Charity, etc...
My formula at the moment in the subreport reads:
(if {COL.BC} in ["225", "235", "236", "237", "241", "280"]
then
(if {COL.BC}= "235" then "Bad Debt"
else
if {COL.BC}="237" then "Bad Debt"
else
if {COL.BC}="241" then "Professional Courtesy"
else
if {COL.BC}="225" then "Charity"
else
if {COL.BC}="236" then "Small Balance Write-off"
else
if {COL.BC}="280" then "Timely Filing")
else
"All other adjustments")
Is there a way to use distinctcounthere?
I need a way to suppress all other data and show only the fields in the array above.
Any Help on how to get this to work, without a sub-report would be best, would be greatly appreciated.
I'm using v.7 at them moment, but we are planning on an upgrade to v.9 or v.10 in the next two weeks, so info for those would be nice if it's more appropriate.
Thanks in advance.
Jonathan Shirts