June 13, 200124 yr Newbies 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?
June 13, 200124 yr 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
September 11, 200223 yr 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.
Create an account or sign in to comment