vote up 0 vote down star

I have a requirement in SSRS.

I have a Windows Forms form. Say there are certain buttons (say 1,2 etc.) Clicking on the button the reports will be generated. Now if I click button 1, say I may pass a string like

Name: {nameplaceholdervalue}

Age: {ageplaceholdervalue}

If we click on button 2, the string may be

Address: {addressplaceholdervalue}

Phone: {phoneplaceholdervalue}

etc.

As can be make out that the placeholder values will come from the database (by some stored procedure).

And the labels will be inside a string. So how to do this?

flag

Can you elaborate a bit what your inputs are & what the you're expecting as output? or post some code may be ? – AB Kolan Oct 27 at 13:41
The question isn't really clear. Are you suggesting that your values, such as "Address: {addressplaceholdervalue}" will be passed to the SSRS report and from there you want to replace the {} value with something from a DB and include it in a report? – Chu Oct 27 at 14:59

1 Answer

vote up 1 vote down check

What i would do is:

  1. Create a report with all possible fields that you may send.
  2. In SSRS hide/show programmatically the fields depending upon the value (ej. value null or 0 or ""). In the rows, use no wrap.
  3. When you receive the data in your app, construct a dataset with the expected field names of the report (at least the fields that come from data). Then pass that dataset as a report source.

Note that this is not the best approach. You may consider create separate reports for each set of data. That way you have more flexibility on the layout, filters, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.