You will need to use a subquery something like:
select distinct
t1.date,
t1.timeRec,
(SELECT result from <yourtablename> where date = t1.date and [procedure] = 'HGB') as HGB,
(SELECT result from <yourtablename> where date = t1.date and [procedure] = 'HCT') as HCT
FROM <yourtablename> t1
hth.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor :.
Wrox Books 24 x 7
================================================== =========