Got a CR v10 pro report that I need help with...basically, the report pulls a field that contains parts from a SQL 2K database. I need the report to 0.00 any "sub" parts it finds otherwise print the cost of the part.
Example, the part below has sub parts in it with cost.
Main Part - 20.00 (tblInvoiceDetail.itemID)
part 2 - 1.00 (tblInvoiceAssemblyDetail.ItemID)
part 3 - 1.00
part 4 - 1.00
Need the report to display instead like so.
Main Part - 20.00
part 2 - 0
part 3 - 0
part 4 - 0
I added the following if-then-else statement which gives me an error - boolean required.
If ({tblInvoiceAssemblyDetail.ItemID})
then "$0.00"
else {tblInvoiceDetail.ItemID}
Help?
Example, the part below has sub parts in it with cost.
Main Part - 20.00 (tblInvoiceDetail.itemID)
part 2 - 1.00 (tblInvoiceAssemblyDetail.ItemID)
part 3 - 1.00
part 4 - 1.00
Need the report to display instead like so.
Main Part - 20.00
part 2 - 0
part 3 - 0
part 4 - 0
I added the following if-then-else statement which gives me an error - boolean required.
If ({tblInvoiceAssemblyDetail.ItemID})
then "$0.00"
else {tblInvoiceDetail.ItemID}
Help?