Viewing 6 posts - 1 through 6 (of 6 total)
Thanks y'all... That got me there!
Month() gave me the number of the month but Datename(m,...) gave me the name of the month so I went with that one.
September 18, 2017 at 4:24 pm
Thank you for your suggestion.
I'd tried that, and it does in fact count for each day, but what I'm looking for is a count by month not day.
September 18, 2017 at 10:48 am
Solved:
I removed the parameter references from my query (@StartDate, @EndDate) but left them in the Report Parameters dialogue and made them Hidden. This removed the parameters fields from the subscription...
June 9, 2011 at 4:11 pm
You are the Man... THX!!!
I tweaked your query a bit and it works perfectly:
SELECTdescription as [Plan Name],
per.first_name + ' ' + per.last_name as [Patient],
substring (plan_start_date, 5,2) + '-' +
substring...
June 1, 2011 at 4:24 pm
Hi sdvoranchik,
Thank for your reply. I tried your suggestion but it failed because appt_date was still included in the order by. Once I removed it it returned the expected results....
June 1, 2011 at 2:52 pm
Viewing 6 posts - 1 through 6 (of 6 total)