Conditional printing (italics)
-
- Posts: 4
- Joined: Tue Oct 10, 2017 12:44 pm
Conditional printing (italics)
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.__
-
- Posts: 0
- Joined: Sat Apr 21, 2018 7:13 pm
=> RE: Conditional printing (italics)
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
-
- Posts: 4
- Joined: Tue Oct 10, 2017 12:44 pm
==> RE: Conditional printing (italics)
PERFECT! Thank you, RLW!!!