Link to home
Start Free TrialLog in
Avatar of compterk
compterk

asked on

MS CRM SSRS Report Display Quote Products Detail

I am creating a Quote report from MS CRM using SSRS and Visual Studio.  The Quote report has an area for a sub-report, QuoteProduct.  What I would like to display is all the fields from QuoteProduct vertically under the Quote Product Name field, for multiple Quote Products associated with the Quote, like:

Skylight 1[new_skylightnumber]:
Length: [new_length]
Width:  [new_width]
Height: [new_height]

Skylight 2:
Length:  [new_length]
Width:  [new_width]

If a particular field is null, I want to skip and not show it.  A Table will llist the multiple quoteproducts, but will extend to the right for multiple pages.  

Any suggestions are appreciated!
Avatar of rakeshAgarwal
rakeshAgarwal
Flag of India image

Use matrix instead of tables

regards
Rakesh
Avatar of iamozymandias
iamozymandias

A matrix will cause problems in report rendering to PDF or Excel.

Another solution is to create multiple rows of the same group/detail level in VS. Then select the row of the table. In the properties window modify the Visibility to show Hidden =iif(Fields!new_field ToBeChecked.Value<>"",false,True)
ASKER CERTIFIED SOLUTION
Avatar of compterk
compterk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial