Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I would like to send parameter from a report1 to report2 in action of textbox (in report1), I found just tuto for sending parameter to Subreports.
Some help
If both reports are located in the same project:
Select Go to report as the action for textbox in report 1
Select report 2 in the Specify a report dropdown
Click the Add button to create a new parameter mapping
Select the target parameter in report 2 in the Name column
Select the parameter you are sending from report 1 in the Value column, or create an expression that passes along the data you want to send.
That's it! Let me know if the reports are not co-located in the same project and I can send instructions on passing a parameter to report 2 via URL.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Could any one give an idea how to display the below in SSRS.
I tried using row grouping and getting the below. please assist how to display same as the first screen shot.
without spacing and getting header part in separate line.
I can see you have a minimum of 2 groupings
Delete the first and second column that has the group value in the tablix.
SSRS will ask you if you want to delete column or the column and the group.
Select the Column only and leave the group alone.
Next right click on the detail row and select insert -> row -> outside group (above)
Merge this line and put the second group field in this row (6.1 ... )
Now right click on the merged line and select insert row -> outside group (above)
Merge this line and put the TOP group field in this row (Training Area ... )
Run the report and you should now have what your desired output
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I'm using a timesheet template from access and I need to modify it a bit. I have two tables. Accounts and Work Hours. On the Accounts table is a list of all of our accounts with a billable checkbox. There is also a pre built form which users input new records into the work hours table that includes the account they worked and the date. The problem I'm having is that some days the account is billable, other days it's not. I would like to turn the billable checkbox on the accounts table into an on/off switch for that account so that our admins can control when an account is billable and when it is not. So that when a user adds a new record into the work hours table either directly or with the form, the corresponding checkbox in the work hours table will already be yes/no and I can query those results after. Anyone have any idea's? It might be possible to do it with the form as well but I'm not quite sure how.
Figured it out by using an afterupdate event in the form i'm using to add data to the table. Afterupdate event is tied to the work code field and runs a dlookup when the field is selected on the form.
Private Sub Form_AfterUpdate()
Me.BILLABLE = DLookup("BILLABLE", "Accounts", "ID =" & Me.[Work Code])
End Sub
Thank you everyone.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have an SSRS report published, and I would like the subscription to sub in today's date as the date parameter every day when it gets emailed out.
But I would like no default date to be set when the user accesses the report directly, so that they may manipulate to whichever date they choose.
Is this possible?
Thanks in advance!
A solution is to create another parameter like #isForSubscription (and you put it as hidden), that accept True or False (you have to put default_value = False) and you change the default date value parameter to something like
= iif(Parameters!isForSubscription.Value is True, Today(), nothing)
Then, when you configure your subscription, you just need to put #isForSubscription=True
I don't remember exactly but I did something similar once and it worked.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 3 years ago.
Improve this question
I'm very new to QuickSight.
trying to move SSRS reports to Quicksight.the reports contains parameter which I'm creating SQLServer function and call it in quickSight with a sample parameter.
(Or use Custom SQL with the parameter value). but anytime I need to have report , I should change the parameter's value and refresh the report.
Question : Is it possible to have a parameterized custom SQL? or
function?
I tried to use filter , but I was not successful.
any idea?
you can add parameters in quicksight.
click parameters tab and press create one.
give parameter name, datatype, values.
you can also set a dynamic default by clicking it. select a database name, user name column and default value column and click apply.
after creating your parameter you can connect it to Filter, control, calculated field, custom actions.
here we can use filter.
click filter tab and press create one.
select your field name and in filter type, choose custom filter and tick mark use parameter and select the parameter which we created earlier and click apply.
if you want to add control, go to parameters and click the drop-down button of your parameter and click add control.
it will ask display name,style(text box or drop down) and click add button.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I cannot get the default sort order to work (on a date) in Report Builder when applied to a Group. I can get interactive sorting to work, and I can get Tablix sorting to work on tables without groups.
I tried right-clicking on the table and then selecting "Tablix Properties" and then selecting Sorting and then using the expression CDate(Date). (Date is the name of the group I want to sort by). Interactive sorting works fine using that expression.
Choose the detail row below the group at the bottom.
Right click and choose edit group properties.
Go to the sorting tab and add the date field without CDate