I have a program that makes the customer name into the group name and then I use the detail lines after that. Recently when I tried to run the report I noticed that if there was no title (which is a code linked to another database to get the actual text) so that it couldn't find a link it would erase the entire line of the group name leaving it blank. I went in and created a workaround
if Donor.info.title ='' then
donor.info.last+", "+donor.info.first
else
donor.info.last+", "+titles.title+" "+donor.info.first
(titles.title is linked to donor.info.title so when donor.info.title is blank it is crashing the line without the if) but I have many reports that have this type of group name and do not want to goto all of them and add this in. (Especially since I didn't design the reports and I am only working on them now) any Ideas would be great
thanx
Yosef
if Donor.info.title ='' then
donor.info.last+", "+donor.info.first
else
donor.info.last+", "+titles.title+" "+donor.info.first
(titles.title is linked to donor.info.title so when donor.info.title is blank it is crashing the line without the if) but I have many reports that have this type of group name and do not want to goto all of them and add this in. (Especially since I didn't design the reports and I am only working on them now) any Ideas would be great
thanx
Yosef