[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

10/30/2009 at 10:27AM PDT, ID: 24858801
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Rolling up charge lines with "different" dates

Asked by IntercareSupport in SQL Query Syntax, SQL Server 2005

Tags: sql server 2005 syntax

The code below returns my out fine, except for records like this:

Patient_Id      Location      Patient_Type      Amount      UserPost_Date
Bangor101      Bangor      Payment Plan      -3.00      2009-09-09 00:00:00.000
Bangor10      1      Bangor      Payment Plan      -11.00      2009-09-09 09:59:10.000

I need these 2 lines to roll up to one, but due to the way the application we use works, this doesn't always happen.  Because the "UserPost_Date" is technically different, they are treated as separate dates.

How can I roll these dates up?  I really only care about the day, not the minute.

I've tried CONVERT(VARCHAR, UserPost_Date, 101) AS UserPost_Date, but there are still 2 lines.

Thanks.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
SELECT DISTINCT 
                      Encounter_Det.Patient_Id, Encounter_Det.Location, 
                      CASE Patient_Personal.Patient_Type WHEN 'Collect' THEN 'Collections' WHEN 'Del Acct' THEN 'Delinquent Account' WHEN 'Fin Rest' THEN 'Financial Restriction'
                       WHEN 'FinDisch' THEN 'Financial Discharge' WHEN 'PayPlan' THEN 'Payment Plan' WHEN 'Pre Coll' THEN 'Pre Collections' WHEN 'SFA' THEN 'SFA' WHEN
                       'SFB' THEN 'SFB' WHEN 'SFC' THEN 'SFC' WHEN 'SFD' THEN 'SFD' WHEN 'SFE' THEN 'SFE' WHEN 'P100%' THEN 'P100%' ELSE 'NADA' END AS Patient_Type,
                       SUM(AccountLedger.Amount) AS Amount, AccountLedger.UserPost_Date
FROM         MDS_ICCH.dbo.Patient_Personal AS Patient_Personal INNER JOIN
                      MDS_ICCH.dbo.Encounter_Det AS Encounter_Det ON Patient_Personal.Patient_Id = Encounter_Det.Patient_Id INNER JOIN
                      MDS_ICCH.dbo.CPT_Code AS CPT_Code ON Encounter_Det.CPT_Code = CPT_Code.CPT_Code INNER JOIN
                      AccountLedger ON Patient_Personal.Patient_Id = AccountLedger.Patient_Id AND 
                      Encounter_Det.Encounter_Date = AccountLedger.Encounter_Date
WHERE     (CPT_Code.billable_flag = 1) AND (Encounter_Det.Delete_Id IS NULL) AND (Encounter_Det.Delete_Date IS NULL) AND 
                      (AccountLedger.TransactionType_Id = 'PMT:CAPCOPAY' OR
                      AccountLedger.TransactionType_Id = 'PMT:CAPCOPAY:COR' OR
                      AccountLedger.TransactionType_Id = 'PMT:COPAY' OR
                      AccountLedger.TransactionType_Id = 'PMT:COPAY:COR' OR
                      AccountLedger.TransactionType_Id = 'PMT:ENCPT' OR
                      AccountLedger.TransactionType_Id = 'PMT:ENCPT:COR' OR
                      AccountLedger.TransactionType_Id = 'PMT:EOCPT' OR
                      AccountLedger.TransactionType_Id = 'PMT:EOCPT:COR' OR
                      AccountLedger.TransactionType_Id = 'PMT:TOSPMT' OR
                      AccountLedger.TransactionType_Id = 'PMT:TOSPMT:COR')
GROUP BY Encounter_Det.Patient_Id, Encounter_Det.Location, 
                      CASE Patient_Personal.Patient_Type WHEN 'Collect' THEN 'Collections' WHEN 'Del Acct' THEN 'Delinquent Account' WHEN 'Fin Rest' THEN 'Financial Restriction'
                       WHEN 'FinDisch' THEN 'Financial Discharge' WHEN 'PayPlan' THEN 'Payment Plan' WHEN 'Pre Coll' THEN 'Pre Collections' WHEN 'SFA' THEN 'SFA' WHEN
                       'SFB' THEN 'SFB' WHEN 'SFC' THEN 'SFC' WHEN 'SFD' THEN 'SFD' WHEN 'SFE' THEN 'SFE' WHEN 'P100%' THEN 'P100%' ELSE 'NADA' END, 
                      AccountLedger.UserPost_Date
ORDER BY Encounter_Det.Patient_Id
[+][-]10/30/09 10:44 AM, ID: 25705248

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: SQL Query Syntax, SQL Server 2005
Tags: sql server 2005 syntax
Sign Up Now!
Solution Provided By: RajkumarGS
Participating Experts: 3
Solution Grade: A
 
 
[+][-]10/30/09 10:47 AM, ID: 25705276

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/30/09 10:50 AM, ID: 25705297

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/30/09 10:50 AM, ID: 25705300

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/30/09 10:54 AM, ID: 25705325

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]10/30/09 10:55 AM, ID: 25705338

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_3_20080625