Hi - I have 2 tables in my report CLIENT and ATTRIBUTES. They are joined with a left outer join (each client has multiple attributes). I have used the select criteria to choose a single attribute category, and grouped by this category.
I have created a formula for each attribute code in that category that reads like:
if {ATTRIBUTES.CODE} = '11'
then "ü"
else ""
which will print a check mark if true. My trouble is that I need all of my formulas/check marks to appear in a single section of the report. Right now the report prints a new detail section for each "true" formula:
Is there any way I can get the checkmarks to appear on the same list? (btw, my "list" is an embedded word object) I tried a subreport but had the same problems. I feel like this should be such a simple thing to figure out, but I'm totally drawing a blank!