D
DS
I have two combo boxes. The first one is from a Value List...
"Main Item";"Modifier"
The second on is from SQL based on a Table
SELECT ReportCats.ReportCatID, ReportCats.ReportCat, ReportCats.ReportType
FROM ReportCats
WHERE (((ReportCats.ReportType)=IIf([Forms]![NewItems]![ItemType]="Main
Item","Main Items","Modifiers")));
I have this IIf statement...the first half works but not the second. I
can only get the Main Items, no Modifiers. Any help appreciated.
Thanks
DS
"Main Item";"Modifier"
The second on is from SQL based on a Table
SELECT ReportCats.ReportCatID, ReportCats.ReportCat, ReportCats.ReportType
FROM ReportCats
WHERE (((ReportCats.ReportType)=IIf([Forms]![NewItems]![ItemType]="Main
Item","Main Items","Modifiers")));
I have this IIf statement...the first half works but not the second. I
can only get the Main Items, no Modifiers. Any help appreciated.
Thanks
DS