Jun 26, 2005 #1 CNeeds Programmer Mar 24, 2004 111 US View Selection: Select Form = "OrderInventory" & Cost != "" | Form = "Inventory" I would also elimate docs where "OrderInventory" & Cost != 0 I cannot figure out how to get both to work at same time??? Thanks, Craig
View Selection: Select Form = "OrderInventory" & Cost != "" | Form = "Inventory" I would also elimate docs where "OrderInventory" & Cost != 0 I cannot figure out how to get both to work at same time??? Thanks, Craig
Jun 27, 2005 #2 pmonett Programmer Sep 5, 2002 2,632 FR How about using brackets ? Code: SELECT (Form="OrderInventory" & Cost!="") | Form="Inventory" Pascal. Upvote 0 Downvote
How about using brackets ? Code: SELECT (Form="OrderInventory" & Cost!="") | Form="Inventory" Pascal.