Gigitty
Member
- Local time
- Yesterday, 21:34
- Joined
- Mar 29, 2007
- Messages
- 52
IF NZ( [Date In], "" ) <> "" THEN
[Device Available].Visible = TRUE
END IF
Sorry what does the 'NZ' refer to?Since we don't know the field names involved, this will be sample code.
First, you have to choose where to put this code. Probably the best place is the Form_Current routine, but I could be wrong if special circumstances apply to your situation. Assuming normal situation,
(somewhere within Form_Current)
Code:IF NZ( [Date In], "" ) <> "" THEN [Device Available].Visible = TRUE END IF
Since we don't know the field names involved, this will be sample code.
First, you have to choose where to put this code. Probably the best place is the Form_Current routine, but I could be wrong if special circumstances apply to your situation. Assuming normal situation,
(somewhere within Form_Current)
Code:IF NZ( [Date In], "" ) <> "" THEN [Device Available].Visible = TRUE END IF
you can change the label to textbox and add Conditional Format
yes it does - the format is determined based on a condition - which could be the value of another field.Conditional Format doesn't allow me to format based on the data value of another field.
Conditional Format doesn't allow me to format based on the data value of another field.
This is my validation rule:-Yes it does! Use Expression Is instead of Field Value is e.g.
View attachment 105657
Oops. CJ_L beat me to it!
Didn't work. :-(Try [Date In] >= #1/1/2023#
as the data in the first record is affecting the label on all remaining 12 records. Would this be due to it being a 'Continuous Form'?
Sorry what does the 'NZ' refer to?