K
Kim
First of all, I would like to thank Duane Hookum on my
last post "hide textbox if another contains a certain
value". That works great.
This next one is similar, But I'm having trouble with my
formula
I have 6 txtBoxes:
txtBoxes | represents txtBoxes | represents
---------|------------ ---------|------------
occRepMm | (month) returnMm | (month)
occRepDd | (day) returnDd | (day)
occRepYy | (year) returnYy | (year)
If the return Date is 2 days greater the the OccRep Date,
I would like an entirely different label and textbox to
appear.
I have a similar setup on my form (which works)
ex:
If (Me!returnMm.column(0) - Me!occMm >= 0) And (Me!
returnDd.Colum(0) - Me!occDd >= 2)
then
Me!blahblahblah.visible = True
else
Me!blahblahblah.visible = False
end if
I would like to know if I can have a similar effect on a
report.
many thanks in advance.
last post "hide textbox if another contains a certain
value". That works great.
This next one is similar, But I'm having trouble with my
formula
I have 6 txtBoxes:
txtBoxes | represents txtBoxes | represents
---------|------------ ---------|------------
occRepMm | (month) returnMm | (month)
occRepDd | (day) returnDd | (day)
occRepYy | (year) returnYy | (year)
If the return Date is 2 days greater the the OccRep Date,
I would like an entirely different label and textbox to
appear.
I have a similar setup on my form (which works)
ex:
If (Me!returnMm.column(0) - Me!occMm >= 0) And (Me!
returnDd.Colum(0) - Me!occDd >= 2)
then
Me!blahblahblah.visible = True
else
Me!blahblahblah.visible = False
end if
I would like to know if I can have a similar effect on a
report.
many thanks in advance.