Wapug
Registered User.
- Local time
- Today, 14:18
- Joined
- Apr 14, 2017
- Messages
- 51
I asked this questio once before, almost 2 years ago to the day. I never got an answer that made much sense and Im back to it again.
On the product details form in the Northwind database there is a "Go to Product" box that has the coding below as its row source. I cant make out what the <>Nz function is doing here. Could someone please explain this?
SELECT [ID], [Product Code], [Product Name],[List Price] FROM Products WHERE [ID]<>Nz(Form![ID],0) ORDER BY [Product Code];
My main questions are what does the Where clause do here? Second, well I guess my second question depends on what the answer is to the first question.
On the product details form in the Northwind database there is a "Go to Product" box that has the coding below as its row source. I cant make out what the <>Nz function is doing here. Could someone please explain this?
SELECT [ID], [Product Code], [Product Name],[List Price] FROM Products WHERE [ID]<>Nz(Form![ID],0) ORDER BY [Product Code];
My main questions are what does the Where clause do here? Second, well I guess my second question depends on what the answer is to the first question.