Go Back   Velocity Reviews > Newsgroups > DotNet
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

DotNet - Showing last collected record in gridview

 
Thread Tools Search this Thread
Old 10-05-2009, 03:56 PM   #1
Angry Showing last collected record in gridview


I have 2 SQL server tables

1. Bloodtest containing a list for valid bloodtests (bloodtestNumber) and descriptions (BloodWorkx)
2 PatientBloodtest containing the results captured for a specific patient (PatientBloodWorx)

Users capture blood test results at different times and they do not always capture all the bloodtests. ALL I want to do is to display the last blood test results captured for the patient in a gridview using this query

SELECT BloodWorx.BldTestName, PatientBloodWorx.membershipNumber,
PatientBloodWorx.BeneficiaryCode, MAX(PatientBloodWorx.BloodTestDate) AS LastOfbloodtestdate, MAX(PatientBloodWorx.BloodTestReceiveDate) AS LastOfBLOoDTESTRECEIVEDATE, MAX(PatientBloodWorx.BloodResult)
AS LastOfBloodresult FROM BloodWorx LEFT JOIN
PatientBloodWorx ON BloodWorx.BldNumber = PatientBloodWorx.BloodTest
GROUP BY BloodWorx.BldTestName, PatientBloodWorx.membershipNumber,
PatientBloodWorx.BeneficiaryCode, BloodWorx.BldNumber
HAVING (PatientBloodWorx.membershipNumber = @membershipNumber) AND (PatientBloodWorx.BeneficiaryCode = @BeneficiaryCode)

Can someone help?


DotBlonde
DotBlonde is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Gridview row information disappearing after selectedIndexChanged Ry99 General Help Related Topics 0 07-13-2009 03:35 PM
How to focus the top of the gridview sureshk Software 0 05-30-2008 09:40 PM
Checkbox values problem in gridview thanigaimani.thirumalai Software 0 11-09-2007 05:12 AM
First Optical Disc Recorder Able to Record and Playback Blu-Ray, DVD & CD Formats. (NEWS) Allan DVD Video 0 02-15-2005 01:06 PM
BREAKING: Kerry leading in key states, PA, FL, OH, WI, MI .... Official Election Guide 2004 DVD Video 89 11-08-2004 03:40 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46