I have two combo boxes and one is suppose to limit the records based on the other. So if I choose in my combo box called Combo1 "Red" I want to see all records which show something like "Red" in one of my fields called Field1. HEre is what I have now.
Field1:
Like IIf(IsNull([Forms]![fForm1]![Combo1]),"*",[Forms]![fForm1]![Combo1])
The problem is that it displays all records correctly when this field is not null but when it is null it does not display records that have no value in this field. So basically if the Combo1 is null it displays all records which are not null and I need it to display everything including records which have something in this field and does that are null.
Field1:
Like IIf(IsNull([Forms]![fForm1]![Combo1]),"*",[Forms]![fForm1]![Combo1])
The problem is that it displays all records correctly when this field is not null but when it is null it does not display records that have no value in this field. So basically if the Combo1 is null it displays all records which are not null and I need it to display everything including records which have something in this field and does that are null.