Viewing 15 posts - 121 through 135 (of 200 total)
for referencing the value from one cell in another cell, have a look at ReportItems:
https://msdn.microsoft.com/en-us/library/dd255285%28v=sql.105%29.aspx
Your final expression might be something like DATEDIFF(DD, ReportItems!Textbox1.Value, GETDATE()) <= 30.
April 13, 2015 at 1:37 pm
Are you sure that's the only subscription for this report? Like you, I can't see any reason that schedule would run on Feb 1.
February 3, 2015 at 2:21 pm
I think Lowell's suggestion of setting the calendar day(s) as 1,15 will work even in a regular subscription; I don't think it has to be a data-driven subscription for that...
February 3, 2015 at 2:18 pm
Is the parameter being used as a filter in the initial query, or is it only being used in the visibility properties of the report (so it shows only the...
January 14, 2015 at 2:07 pm
What result do you get with this?
=IIF(SUM(Fields!Hours.Value) > Fields!Max_Hours.Value, "Red",
IIF((SUM(Fields!Hours.Value) < Fields!Max_Hours.Value OR IsNothing(SUM(Fields!Hours.Value))), "Green" ,
"Orange"))
Alternately you could try this (older syntax):
=IIF(SUM(Fields!Hours.Value) > Fields!Max_Hours.Value,...
January 12, 2015 at 1:06 pm
In Parameter Properties, do you have the "allow null value" box checked?
December 29, 2014 at 4:59 pm
Have a look at the Data Source the reports are using - that is what dictates what user's permissions are being passed to the database. If the Data Source...
December 23, 2014 at 12:29 pm
Have you tried a format like this for Switch?
=Switch( (Fields!resource_nextdate.VALUE Is Nothing OR Fields!resource_nextdate.Value < today() ) AND Fields!SR_Status.Value = "Scheduled", “Yellow”,
(Fields!resource_nextdate.VALUE Is Nothing OR Fields!resource_nextdate.Value < today() )...
December 2, 2014 at 5:07 pm
Maybe try adding /reports to the URL; something like 8001/reportserver/reports. See if that gets you there.
November 29, 2014 at 3:00 pm
i have to find sum of months amounts starting from November to till financial year ending that is March
can any one suggest me how to do this....
??? A DeLorean...
October 7, 2014 at 11:20 pm
Can Fields!Amount1.Value be NULL? That might result in the calculation giving NULL (or NULL/100) as a result. When you run the query in SQL, are there any rows...
October 7, 2014 at 4:27 pm
You could try changing the expression to something like this:
=IIF((Sum(Sum(Switch(Fields!Data_Center.Value="Revenue",Fields!Amount1.Value))-sum(Fields!Amount.Value))/Sum(Switch(Fields!Data_Center.Value="Revenue",Fields!Amount1.Value)))= 0, "0", ((Sum(Sum(Switch(Fields!Data_Center.Value="Revenue",Fields!Amount1.Value))-sum(Fields!Amount.Value))/Sum(Switch(Fields!Data_Center.Value="Revenue",Fields!Amount1.Value)))*100)/100)
Though depending on your data you might be able to get away with a simpler version:
=IIF(Fields!Amount1.Value) =...
October 6, 2014 at 12:49 pm
Is the report pointing to same data source in SSRS that it points to in Visual Studio? That's the only thing I can think of right off.
September 24, 2014 at 3:02 pm
In 2008, in the Dataset properties, you should see options down the left for Query, Fields, Options, Filters, etc. Select Query, and near the lower right is a "Refresh...
September 10, 2014 at 1:52 pm
In Visual Studio 2005, you right-click on "Report Datasets" on the Data tab and select Refresh. In 2008, the refresh option seems to have moved into the Dataset properties...
September 10, 2014 at 1:29 pm
Viewing 15 posts - 121 through 135 (of 200 total)