Case Referral Reports

Closed Forum - older posts now retired. This forum is read only. You can search and view posts in this forum but you cannot reply or create new posts in this forum.
Post Reply
Michael Lerner

Case Referral Reports

#1

Post by Michael Lerner » Thu May 16, 2002 5:32 pm

Dear Michael,

When doing Case Referral Reports, what advanced filter or other method do I need to use to exclude all cases where the Referral Date or Referral Source is *blank*?

Thanks!

Sincerely,
Michael Lerner
Lerner, Moore, Mammano, Strasser, and Silva
www.injuryatwork.com
(909) 889-1131

Michael Appell

Re: Case Referral Reports

#2

Post by Michael Appell » Fri May 17, 2002 8:08 am

Hi Michael,

to exclude blank referral dates just enter 01/01/1901 for the starting date. Let me get back with you for a blank referral source.

Mike

Michael Appell

Re: Case Referral Reports

#3

Post by Michael Appell » Sat May 18, 2002 12:13 am

Michael,

if you want to exclude all blank referral sources, please enter the following in the Advanced filter:

case.rb > 0


Mike.

Leslie

Re: Case Referral Reports

#4

Post by Leslie » Tue Jun 11, 2002 4:35 pm

Hi Mike,

What advanced filter would be used to get a referral report of ONLY cases that have a blank referral source or a blank referral date?

Leslie

Michael Appell

Re: Case Referral Reports

#5

Post by Michael Appell » Tue Jun 11, 2002 4:52 pm

Leslie,

Number 3 below should provide you with what you need.


1. Advanced Filter for Blank Referral Source:

case.rb = 0


2. Advanced Filter for Blank Referral Date:

empty(case.d_r)

3. Advanced Filter when either the Referral Source is blank or the Referral Date is blank:

case.rb = 0 .or. empty(case.d_r)

4. Advanced Filter only when both the Referral Source and the Referral Date are not entered:

case.rb = 0 .and. empty(case.d_r)

Mike

LESLIE

Re: Case Referral Reports

#6

Post by LESLIE » Thu Jun 13, 2002 8:04 am

Hi Mike,

How would I exclude all deleted cases?

Leslie

Michael Appell

Re: Case Referral Reports

#7

Post by Michael Appell » Thu Jun 13, 2002 9:28 am

The latest versions exclude deleted cases automatically. I'm surprised your version is including them. If so, just add .and. .not. deleted() in the advanced search. For example:

( case.rb = 0 .or. empty(case.d_r) ) .and. .not. deleted()

Mike.

Post Reply