Use a Flag in Report

ashraful

New member
Local time
Today, 09:31
Joined
Dec 6, 2017
Messages
9
Hello Everyone,

I want a Red Flag will appear in the Report below when Current Date crosses the Reminder Date.

Plz help.

IE0pY9s5yDALg3koHEHjO1KBTSbwBDDTCPGFCohBS8vmn47V57ci68gdkSoO-ukBCmvbjBXk-jpRE7zreDq3=w1920-h974
 
Your image isn't appearing; you need to attach it here.
 
hi there, see sample if this is what you need
 

Attachments

there'll be little change in the condition. If current date crosses the Reminder Date and Current date is less than Due Date.
 
Last edited:
there'll be little change in the condition. If current date crosses the Reminder Date and Current date is less than Due Date.
 
add it to the criteria in VBA:

Me.imgFlag.PictureData = Switch(Me.Reminder_Date <= Date And Date < Me.[Due Date], Me.Image2.PictureData, True, Me.Image1.PictureData)
 

Users who are viewing this thread

Back
Top Bottom