Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TOP 3 ItemNumber, Prices FROM TableName Order by Prices ASC
SELECT Item, "Vendor1" As Who, PriceVendor1 As Price FROM tableName WHERE PriceVendor1<> 0
UNION
SELECT Item, "Vendor2" As Who, PriceVendor2 FROM tableName WHERE PriceVendor2<> 0
etc
SELECT Item, "Vendorn" As Who, PriceVendorn FROM tableName WHERE PriceVendorn<> 0
SELECT TOP 3 Item, Who, Price FROM qryNormal WHERE Item = 1234 ORDER BY price ASC
WHERE Item = 1234