Viewing 15 posts - 391 through 405 (of 2,278 total)
One report 2 data driven subscriptions
Daily subscription query
SELECT DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS StartDate
,DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS EndDate
Monthly subscription query
SELECT DATEADD(mm,-1,DATEDIFF(dd,0,GetDate())) AS StartDate
,DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS EndDate
Later in the subscription wizard you associate the StartDate value to...
June 7, 2012 at 3:59 pm
In the report manager go to the Properties tab and click History. You can configure your snapshots there.
June 7, 2012 at 3:51 pm
harri.reddy (6/7/2012)
hii want to hide label when one field valeu is null,
i am using this expression,
=iif(Fields!total.Value =NULL,true,false)
it showing error in expression,
"null is not declared"
Try
=iif(ISNOTHING(Fields!total.Value),true,false)
June 7, 2012 at 3:48 pm
I have only seen blank pages when the report pushes out the width beyond the page margins. Check to make sure that your report body width + left margin...
June 7, 2012 at 3:47 pm
It's my opinion that doing calculations, when practical, in SQL is a better path. I have done plenty of calculations in SSRS though when it would be much harder...
June 7, 2012 at 3:43 pm
eccentricDBA (6/7/2012)
Brandie Tarvin (6/7/2012)
EL Jerry (6/7/2012)
Ray K (6/7/2012)
Lynn Pettis (6/6/2012)
Longest DayD-day
Birthday.
Thor's Day
Hmmm Thor's Day - Thursday. Coincidence?
June 7, 2012 at 3:39 pm
And the URL link will bring them to the portal, I don't see the problem, this way is fewer clicks for the end user.
June 6, 2012 at 11:26 am
Yeah, this is a bit tedious. You also want a separate header for your detail data. What you need to do is add a row at your group...
June 6, 2012 at 11:20 am
crookj (6/6/2012)
Lynn Pettis (6/6/2012)
Longest DayLove that movie! A classic! June 6th!!!
The Longest Yard....not really a classic.
June 6, 2012 at 10:11 am
I guess I don't understand the issue of providing a link to the report. This just makes it easier for the user to get to the report on the...
June 6, 2012 at 10:07 am
In a report subscription you can "Include report" or "include link" or both. In your case I would just include the link.
June 5, 2012 at 8:29 am
I probably should have been more specific than "Data element." From what I understand you want to group on client.
June 5, 2012 at 8:26 am
If you have a report subscription, you can execute that subscription on demand using SQL. If you want, you can do the same thing using the Execute SQL Task...
June 5, 2012 at 8:21 am
I have only used VB for embedded code. I am not sure if it will take another language. Although if you really need another language (and if it...
June 5, 2012 at 8:19 am
I would use a list, and if you need repeating data put a tablix/table inside the list. Group the list and tablix on the same data element and you...
June 5, 2012 at 8:03 am
Viewing 15 posts - 391 through 405 (of 2,278 total)