Hello,
I have to Count(s) on my Report Footer. Count([Attending]) and Count([Guests]) which work fine. How do I add these two Counts for one total on the report footer?
Thanks in advance.
Glen
Hello,
I have to Count(s) on my Report Footer. Count([Attending]) and Count([Guests]) which work fine. How do I add these two Counts for one total on the report footer?
Thanks in advance.
Glen
off the cuff
= Count([Attending]) + Count([Guests])
Thank you very much for your quick reply and solution! It works fine.