Jul 21, 2006 #1 sasa888 Programmer Oct 15, 2001 131 US Hi all, is it possible to format the text box within page footer based on the detail section? (I have 20 detail sections). Please help!
Hi all, is it possible to format the text box within page footer based on the detail section? (I have 20 detail sections). Please help!
Jul 21, 2006 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Yes, probably. Why not take the time to state specifically what you want? You can create formulas in the details section to supply values which could then be used for formatting. example: details formula whileprintingrecords; booleanvar BoldMe; if {table.value} > 1000 then BoldMe := true Then you can refer to the variable in the formula for a font as in: whileprintingrecords; booleanvar BoldMe; if BoldME = true then crbold Pretty generic answer to a vague question. -k Upvote 0 Downvote
Yes, probably. Why not take the time to state specifically what you want? You can create formulas in the details section to supply values which could then be used for formatting. example: details formula whileprintingrecords; booleanvar BoldMe; if {table.value} > 1000 then BoldMe := true Then you can refer to the variable in the formula for a font as in: whileprintingrecords; booleanvar BoldMe; if BoldME = true then crbold Pretty generic answer to a vague question. -k