Viewing 6 posts - 1 through 6 (of 6 total)
A client wanted a "Previous Page" link in a report that was hyperlinked from another report. Kind of like a history.go(-1);
I know you can't use javascript in RS but is...
January 11, 2008 at 4:47 pm
Have you tried ###-###-#### as the Format?
December 8, 2005 at 12:48 pm
If I am understanding your issue correctly, this is what you need to do.
November 11, 2005 at 9:58 am
I agree with Peter in that getting SQL 2005 certifications would reinforce some of your current knowledge while keeping you up to date on the current technologies, therefore boosting your value...
November 10, 2005 at 1:13 pm
If you wanting something like the following then do use the table or list control?
Date Interest Rate
12/15/2005 1.23
12/07/2005 3.45
11/23/2005 2.14
11/17/2005 1.34
11/10/2005 1.76
Or do you want the date to be...
November 10, 2005 at 1:00 pm
select top 5 date, interest_rate from table
order by date desc
November 10, 2005 at 10:45 am
Viewing 6 posts - 1 through 6 (of 6 total)