Page 1 of 1

Conditional printing (italics)

Posted: Wed Dec 28, 2005 2:47 pm
by MGrice_(Guest)
I am designing a Final Order Confirmation report for a client. If the item is of a certain kind, they want the Description field contents to print in italics; otherwise, just normal text. ____Is this possible in R&R 10.0? And, if so, any tips or specific info as to how?____TIA.__

=> RE: Conditional printing (italics)

Posted: Wed Dec 28, 2005 6:13 pm
by JamesWheld
Create two calculations, each based on whether or not the description should be printed in italics: (1) IIF(type="I",DESCRIPTION,"") (2) IIF(type<>"I",DESCRIPTION,""). Then place both calculated fields in the same position on the report, formatting one in italics and one not.____rlw

==> RE: Conditional printing (italics)

Posted: Wed Dec 28, 2005 6:24 pm
by MGrice_(Guest)
PERFECT! Thank you, RLW!!!