Automatic Macro in Access to check today date minus date on table -


is there automatic way scenrio in access?

i have table have startdate, enddate , checkerbox

what goal today january 31, want vba or macro in access check if enddate=today should check checkbox if not leave that...

i'm looking way this... suggestion welcome

thanks

try in vba :

private sub form_current()    if datediff("d", inputenddate, date) = 0    chkdate = 1  ' check checkbox chkdate   end if  end sub 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -