Newbies jester100 Posted June 13, 2001 Newbies Posted June 13, 2001 I'm trying to create a layout for printing that puts certain records in bold based on the data they contain. In my case I want only those records that contain a "yes" in a certain field to be printed as bold, the others should be normal. Is there any way to do this?
LiveOak Posted June 13, 2001 Posted June 13, 2001 Create two calculated display fields for the field you which to display as both bold and non-bold. DiplBold (calculation, text) = If(Test = "Yes", Text, "") DispPlain (calculation, text) = If(Text <> "Yes", "", Text) Stack these two fields on the layout with each formatted as transparent, "DispBold" formatted as bold and "DispPlain" formatted as non-bold. -bd
GibsonCRG Posted September 11, 2002 Posted September 11, 2002 Terrific approach - so simple, I only HOPE I would have figured it out before a month went by, but I doubt it. Thanks for a great approach - works like a charm.
Recommended Posts
This topic is 8100 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now