I'd like to have something like this in the VBA code, but I cannot think how an Immediate If like this should appear.
What it needs to do is to change a string after 14 days.
Help/advice would be appreciated.
Me!cboWork = IIf(Me!cboWork = “New” And (Date() – Me!txtDoA) >= 14, “Tainted”, Me!cboWork)
What it needs to do is to change a string after 14 days.
Help/advice would be appreciated.
Me!cboWork = IIf(Me!cboWork = “New” And (Date() – Me!txtDoA) >= 14, “Tainted”, Me!cboWork)