Hello everyone,
I am doing a SSRS report, and here is the data from the Query:
Data from the Query | |||
invoice date | item name | item price | show_item_policy |
7/12/2011 | name1 | 11 | TRUE |
7/12/2011 | name2 | 22 | FALSE |
7/12/2011 | name3 | 33 | TRUE |
And I have the sample SSRS report layout like this:
SSRS report | |
invoice header | |
invoice date | 7/12/2011 |
invoice table for items | |
item name | item price |
name1 | 11 |
name2 | 22 |
name3 | 33 |
invoice footer | |
show_item_policy | show? Not show? |
So, basically, there are
-1- invoice header (has only 1 field of invoice date, say this field is from custInvoiceJour)
-2- Invoice table for items(has item name and item price fields, say from custInvoiceTrans), and I am using a table to list out the data on report
-3- invoice foooter, which only contains 1 textbox, say also from custInvoiceTrans, but as for item1 and item3, the value is true, But for item2, the value is False.
The requirement is saying that if any item has 'show_item_policy' as false, then show "XXX(certain words)" on the text box in the invoice footer. So, I am wondering what can be done about this invoice footer now..
Any advice is appreciated, thank you~
Kwen