Hi,
I have a checkbox on a form (chk_Live)
I have a field in a table that is also boolean (MD_Live)
If the user ticks chk_Live i want to show only records where MD_Live = TRUE However if they leave un-ticked i want to show ALL records.
Under the MD_Live field, i tried this :-
This does not work, What is the correct syntax?
thank you
I have a checkbox on a form (chk_Live)
I have a field in a table that is also boolean (MD_Live)
If the user ticks chk_Live i want to show only records where MD_Live = TRUE However if they leave un-ticked i want to show ALL records.
Under the MD_Live field, i tried this :-
Code:
IIf([Forms]![frm_menu]![Chk_Live]=True,TRUE,TRUE or FALSE)
This does not work, What is the correct syntax?
thank you