Very nice suggestion Peter. I created the report as you suggested and linked it into the main report. Works like a charm.
You mentioned that you haven't tried it yet, so here is the method that I needed to use to get it to link up correctly.
I wasn't able to get it to work using just FileName as my formula. The concatenation in the subreport of the directory and file wasn't cooperating. I needed to strip off the directory information in the main report.
I created a formula in the main report:
stringvar path:=FileName;
stringvar flip:=StrReverse (path);
numbervar slash:=instr(flip,"\"

-1;
stringvar output:=right(path,slash);
output:=mid(path,length(path)-slash+1,slash)
I then linked the file name in the main report to the File Name field in the sub report.
There wass an oddity though. In the summary info of my report shows the revision at 130, but in the sub it shows as 120. ?????
Mike