Viewing 15 posts - 301 through 315 (of 443 total)
Removed: my assumption was incorrect! Talking **** again 😀
I had assumed that formatting a field would affect any arithmetic done on that field as a result of the formatting....
November 18, 2009 at 2:19 am
Good, which solution did you use? Just for the benfit of others.
November 18, 2009 at 1:45 am
:w00t: Agghhh a while loop. I'll be back with an alternative solution, unless someone beats me to it (highly likely).
In the meantime read Jeffs tally table article for a clue....
November 17, 2009 at 9:19 am
Or you could add the values by referencing the original columns from the report dataset, or do the calculation in your query or stored proc. Either of which is probably...
November 17, 2009 at 9:16 am
What are the values in the individual fields?
It looks like it's concatenating three string values of "1.00", "1.00" and "1.00"
You may need to convert to a numeric type before...
November 17, 2009 at 9:08 am
Here's a big clue:
SELECT DATEADD(minute,(N-1)*@deltaMins,DATEADD(hh,@startHour,0))
FROM Tally
I've intentionally omitted a where clause as an exercise for the OP.
See the link in my sig for Jeff's tally table article.
November 3, 2009 at 8:53 am
Yes, you can use grouping, and do a page break after each group.
You'll need an additional grouping column in your dataset which you can produce something like this:
select groupnumber =...
October 21, 2009 at 7:21 am
RandMan-585256 (10/8/2009)
Some people want to learn how to do things themselves and just need to be pointed in the right direction....
October 8, 2009 at 7:42 am
What about this?
I might add this to the links in my sig just for these sort of occassions. 🙂
October 8, 2009 at 1:59 am
Don't think I was too harsh do you? I know he's only a newbie but there is a limit!!
Obviously homework or something,as Jeff alluded to earlier. His question clearly shows...
October 8, 2009 at 1:55 am
ryan121 (9/22/2009)
has anyone made a 'cheat sheet' for formatting in SSRS? ...
Like this perhaps?: http://john-sheehan.com/blog/wp-content/uploads/msnet-formatting-strings.pdf
September 24, 2009 at 5:33 am
Sam,
Since you're already using SQL Server and you have Crystal experience I'd suggest you give Reporting Services a go since it comes for free with SQL.
Try starting here, and...
September 16, 2009 at 9:53 am
So, what do you have experience in? C#, VB, ASP, ASP.NET, Reporting Services?
You'll need to write some server side code whatever.
There are many possible ways to do this but it...
September 16, 2009 at 9:18 am
Viewing 15 posts - 301 through 315 (of 443 total)