Question : Hide Grouping Footer In Access Report

Hello.
I would like to be able to hide a group level footer on an Access report if the data in the grouped field is null. Is this possible?
Thank you

Answer : Hide Grouping Footer In Access Report

in the On Format event for the footer enter something like
if isnull(fieldtocheck) then
   me.section(n).visible = false
else
   me.section(n).visible = true
end if
n is an integer that depends on which footer you are trying to hide. Even numbers are footers and odd numbers are headers.
Random Solutions  
 
programming4us programming4us