Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have the following set:
COUNT({1<FinancialClassCode ={"1"}, DRG = $::DRG, Facility = $::Facility, CalendarQuarterYear = $:: CalendarQuarterYear, CalendarMonth = $:: CalendarMonth, JointSurgeonName -= {'$(vExcludeSurgeon)'}>}DISTINCT PatAcctNum)
I'm looking to ignore all selections except the following above. I added the -= {'$(vExcludeSurgeon)'} which is supposed include all Surgeons except the excluded surgeon defined by GetFieldSelections(JointSurgeonName).
However, the set isn't working correctly and it's still counting the excluded surgeon..
Can you try this:
Count({1<FinancialClassCode ={"1"}, DRG = $::DRG, Facility = $::Facility, CalendarQuarterYear = $:: CalendarQuarterYear, CalendarMonth = $:: CalendarMonth, JointSurgeonName = e(JointSurgeonName)>}DISTINCT PatAcctNum)
Can you try this:
Count({1<FinancialClassCode ={"1"}, DRG = $::DRG, Facility = $::Facility, CalendarQuarterYear = $:: CalendarQuarterYear, CalendarMonth = $:: CalendarMonth, JointSurgeonName = e(JointSurgeonName)>}DISTINCT PatAcctNum)
thanks Sunny
No problem at all... I am glad I was able to offer help