Looking for a report or query...

For users or potential users.
Post Reply
jourdo
Posts: 57
Joined: Tue Sep 27, 2011 6:06 pm

Looking for a report or query...

Post by jourdo » Thu Feb 28, 2013 2:29 pm

Is there something out there that will allow me just to print off patient payments for a given time period? It is that time of year where patients are asking for statements for income tax purposes. If I could give them something with just their payments, and none of the other stuff, I think that would make things easier for them.

Any ideas?

Tom Zaccaria
Posts: 356
Joined: Mon Feb 25, 2008 3:09 am

Re: Looking for a report or query...

Post by Tom Zaccaria » Thu Feb 28, 2013 6:29 pm

Patient payments for a date range.

Try this but change the dates if necessary.

/*75*/ SET @StartDate='2012-01-01';
SET @EndDate='2012-12-31';
SET @PatientNumber=6179;
SELECT * FROM paysplit WHERE
DatePay>=@StartDate AND
DatePay<=@EndDate AND
PatNum=@PatientNumber;

drtmz

Tom Zaccaria
Posts: 356
Joined: Mon Feb 25, 2008 3:09 am

Re: Looking for a report or query...

Post by Tom Zaccaria » Fri Mar 01, 2013 6:08 am

Modified it slightly to this:

Change dates and patient number as needed

/*75*/
SET @StartDate='2012-01-01';
SET @EndDate='2012-12-31';
SET @PatientNumber=424;
SELECT Patnum, ProcDate, SplitAmt, ProvNum, DatePay
FROM paysplit WHERE
DatePay>=@StartDate AND
DatePay<=@EndDate AND
PatNum=@PatientNumber;

Post Reply