ssrs-2008

ssrs setting column visibility on rowgroup

那年仲夏 提交于 2019-12-03 22:49:10
I'm trying to hide a column but it belongs in the RowGroups area. Unfortunately, the Column Visibility is greyed out and disabled. I'd like to just hide the column under certain conditions (using expressions) but keep the grouping. I found a similar question on SO but its solution did not work for me. Is there a workaround for this? ssrs column visibility inside row groups I've tried shifting some of the columns to the body area of the tablix, but then I can't merge cells vertically. I'm not sure what my options are. In the image below, I'm trying to hide the first column but the Column

Execute .exe in SSRS Report

对着背影说爱祢 提交于 2019-12-03 22:45:54
i want to execute a .exe in a SSRS Report from Microsoft Dynamics AX . I tried so far to realize that over Custom Code and a Textfield with following Expression: =Code.StartProcess("test") Public Function StartProcess(ByVal s As String) As String Dim pHelp As New ProcessStartInfo pHelp.FileName = "test.bat" pHelp.Arguments = s pHelp.UseShellExecute = True pHelp.WindowStyle = ProcessWindowStyle.Normal Dim proc As Process = Process.Start(pHelp) Return "it works" End Function I get the error ":StartProcess is invalid. InvalidIdentifier" As second try i use this: ="javascript:void(window.open(

Make hidden table column take no space in SSRS 2008 R2

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 22:33:47
Has anyone figured out a good way to make a hidden table/matrix column take no horizontal space? I could use some crazy conditionals to dynamically determine the contents of the columns (effectively sliding them leftward as far as possible), but that is nasty, plus doesn't allow for varying column widths in the columns to the right of the one I want to hide. The idea is that when a parameter is set to "Any" then the column with the corresponding value should display. But when the parameter is set to an explicit single value the report doesn't need to contain that column any more (it will be

Copy and paste a table (tablix) in SSRS

半世苍凉 提交于 2019-12-03 22:07:52
I have a tablix that has data for one day, and I need to have the same data at the bottom but in 3 different lines. I'd like to copy the main day table 3 times at the bottom, and then use different datasets for each one. I tried copying the tablix and pasting it into the Body beneath the tablix, but I get the following error: Report Builder was unable to paste successfully. How can I accomplish the copy and paste? Or if that isn't possible, is there another way to do what I am trying to accomplish? Here's an animated screenshot: You are likely getting the error message Report Builder was

SSRS default parameter values in subscription

£可爱£侵袭症+ 提交于 2019-12-03 21:17:06
I have a report that has two required date parameters which the user enters. I want to create a subscription that runs on Friday that pulls for the previous week's Sunday through Saturday period. So for example, for this coming Friday, the subscription would pull for Jan 29 - Feb 4. I've tried =Now(), =Today(), @ExecutionTime and then subtracting the number of days but all I get is errors. Is this possible to do? I did see this link but I wonder if there's a better way. http://www.sqlservercentral.com/articles/Development/datadrivensubscriptions/2432/ SSRS 2008 JonH Yes I have done this, see

I want to Repeat Page Header on each Page for reports.Repeat on NewPage is not appearing in properties of Tablix member in SSRS 2008

亡梦爱人 提交于 2019-12-03 18:26:40
问题 How to Repeat Page Header on each Page. Repeat on NewPage Property is not appearing in ssrs 2008 tablix memeber property 回答1: After a little experimentation, I figured out how to consistently get the table header to repeat on every page. The setting of the RepeatColumnHeaders property on the tablix seems to have no effect on this behavior. Instead, we have to set it on a static member of the row groups. To see the static members of the row groups, click on the small drop down arrow on the far

Pass a parameter value to a Dataset Parameter in SSRS 2008

非 Y 不嫁゛ 提交于 2019-12-03 16:35:26
I have a dataset with a parameter as which is passed to a query as shown below. The issue here is DataSet parameter queryOptions does not accept the value from the Report Parameter Date . If i hardcode any value e.g <CalendarDate> 08/11/2012 </CalendarDate> instead of <CalendarDate> = Parameters!Date.Value </CalendarDate> the report works fine. What wrong am i doing while passing parameter. I even created another Dataset Parameter named Date and assigned Parameter Value [@Date] even that did not work. Note : Parameter Date is of type DateTime You can try the dynamic expression under your

How to link back to parent report in SSRS

点点圈 提交于 2019-12-03 16:34:57
I have some reports with drilldown, and I have now been asked to add a breadcrumbs style navigation to the report so the user can access the parent report again without having to use the litte 'back' button. I was wondering if there was an easy way to do this? Currently I havent been able to find anything on the interwebs. My solution right now is to pass the parameters for the parent report to its child then have a link back to the report using those parameters, however this really isnt the ideal solution. Thanks You solution is pretty much what I have done. I don't think there is a way to

SSRS 2008: error message saying my parameter doesn't exist but it clearly does?

丶灬走出姿态 提交于 2019-12-03 14:38:40
问题 I have a report that has about 10 parameters and about 10 datasets and one datasource. I typed alot but I really need help so I figured I would try and provide as much info about the problem as I could right from the start. Let's simplify it all and pretend these are the relevant names of everything and that the report gets basic employee information: Parameters facilityID: text in the format of a guid or uniqueidentifier, this is hidden and passed in so that the end user of the report can

Report Builder 3.0 - Dataset Credentials Do Not Work

雨燕双飞 提交于 2019-12-03 12:52:58
I am using SSRS 2008 R2 and Report Builder 3.0. I set up a shared data source via the browser (http://myserver/reports/) wherein the "credentials are stored securely in the report server" to use with multiple reports. Testing the connection via the browser works. Now, I fire up Report Builder 3.0. I start a new report and "Add Data Source". I select the "Use a shared connection", browse to the server, and select the above data source. Click "Test Connection" and all is well. I then try to "Add Dataset". In the dialog, I select "Use a dataset embedded in my report", I select my data source