Viewing 15 posts - 421 through 435 (of 2,278 total)
I wrote a blog about this when using dynamic SQL Server queries that may help. Also there were several comments at the bottom of the blog that offered alternatives...
May 31, 2012 at 7:12 am
If you have the enterprise version you can use data driven subscriptions using one report with 3 subscriptions.
For yesterday your data driven subscription would be something like
SELECT DATEDIFF(dd,-1,GetDate()) AS FromDate,...
May 31, 2012 at 7:04 am
You could have the dba set up some data models for the analyst and then give the analyst Report Builder.
May 30, 2012 at 12:13 pm
As Sean points out, I think you just need to change "day" to "d"
I don't understand how you are doing your Average. DateDiff only returns a single number, and...
May 30, 2012 at 12:04 pm
Here is a different approach. It looks to me like your case table should be an accumulating snapshot fact table. There were several articles on this just recently...
May 30, 2012 at 7:14 am
Whether you use the OnError, or redirect in the data flow, your net effect is the same.
Forgive me because I don't usually handle errors this way but if you want...
May 30, 2012 at 7:05 am
In loose terms
SWITCH(Fields!ProfileCount.Value > 1, 'Red",Fields!ProfileCount.Value = 1,"Yellow",1=1,"White")
I did not check to see if these are all valid colors. Also you would have to use this at the group...
May 30, 2012 at 6:52 am
I suppose if you want to expose all the detail data rather than my solution above, you could add a grouping at the customer level and then Count the detail...
May 29, 2012 at 2:58 pm
I would just make my dataset query like this:
SELECT [customerid]
,COUNT([profileid]) AS ProfileCount
FROM [match]
GROUP BY [customerid]
Then just base your color expression off of the value...
May 29, 2012 at 2:57 pm
Two primary reasons. First, to help others through common difficulties we have all had to face at one time or another. Second, frequently I learn subtleties about something...
May 29, 2012 at 11:15 am
I would think you could just do this:
=YEAR(Fields!StartDate.value) + " " + MONTHNAME(MONTH(Fields!StartDate.value))
May 29, 2012 at 10:52 am
Are you getting an actual error, or are you getting the wrong result? What is the error you are getting?
May 29, 2012 at 10:43 am
I would say yes, but it is also generally a good idea to maintain whatever natural keys there are that can join those three rows in the first place. ...
May 29, 2012 at 8:09 am
Viewing 15 posts - 421 through 435 (of 2,278 total)