Viewing 15 posts - 241 through 255 (of 290 total)
Hi,
As far as I am aware there is no way to do this within a report. The ReportItems collection does not expose the Hidden property.
Possible to work around. ...
October 24, 2013 at 8:59 am
Hi Dave,
All of this is possible.
As long as the users aren't granted any of the System roles (System Admin, System User) in report manager they will not see the site...
October 24, 2013 at 8:29 am
It feels a bit hacky but you could...
Add an empty row to the table in your subreport, outside of the Detail group and use an expression for the row Visible...
October 22, 2013 at 9:58 am
Mike,
Before we start I do not advocate deleting directly from the ReportServer and your posts scared me a little.
Can I ask why you are not using the report manager for...
October 22, 2013 at 9:41 am
Hi Shindle,
Users can just be assigned the item level security, e.g. Browser role. Obviously they need to be able to navigate to the item so need Browser on the...
October 22, 2013 at 7:37 am
Hi George,
I've come across this problem before. What I did was to add an extra dataset to the subreport that always returns a value i.e.
SELECT 1
You don't have to...
October 22, 2013 at 2:24 am
Yes your assumption is correct.
For readability this could be better done as a switch statement:
=Switch(
Fields!Gr.Value = "01", "01 Total Score",
Fields!Gr.Value = "02", "02 Total Score",
...
October 4, 2013 at 4:12 am
Yes. This is a Scale Out Deployment.
September 11, 2013 at 5:05 am
Try setting the ConsumeContainerWhitespace property to true in the Report properties.
August 14, 2013 at 5:55 am
You can use Iif in font colours.
Are you formatting the text based on it's value (that is not on the value in a different textbox)? If so try using...
July 31, 2013 at 2:44 am
Hi Krypto,
You can indeed. You need to create a linked server to your Analysis Services instance.
e.g.
EXEC sp_addlinkedserver
@server = 'AW'
, @srvproduct = ''
, @provider = 'MSOLAP'
, @datasrc = 'localhost'
,@catalog...
July 18, 2013 at 3:34 am
Site settings are to grant users access to configuration and monitoring of the Report Manager instance.
Folder settings are to grant role access to users to view, schedule or edit the...
July 18, 2013 at 3:10 am
What you can do is to create your own report template.
Create a blank new report and set up all your defaults, language etc then save a copy in (if your...
July 17, 2013 at 3:56 am
If I understand what you are trying to do correctly the "in" filter requires an array, you cant pass it multiple values separately. You can create an array by...
July 17, 2013 at 3:42 am
Hi Happyslug,
What you need to do is set the visible property to false on the rendering extensions.
Find your extensions in the RSReportServer.Config file e.g.
<Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering">
and add Visible="false" like so:
<Extension...
June 6, 2013 at 1:39 am
Viewing 15 posts - 241 through 255 (of 290 total)