Conditional format

Safari

Member
Local time
Today, 20:18
Joined
Jun 14, 2021
Messages
95
Hi All

How to make textbox ( bound ) enabled by conditional format with anther unbound textbox?

I made expression by if statement but its not working..
 
Can you show us your CF expression?
 
already a thread on this subject here
 
private sub textx_afterupdate()
Me!xx.Enabled = (Nz(Me!textx, 0) <> 0)
end sub

private sub form_current()
call textx_afterupdate
end sub
 

Users who are viewing this thread

Back
Top Bottom