hi, im trying to Lowercase my query results and Access says: "UNDEFINED FUNCTION 'LOWER' IN EXPRESION"This is the regular SQL:SELECT LocalSKU, QOHFROM InventoryWHERE WebItem='YES';
and according to this help page: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_la-lz_1pki.aspthis is my attemp to lowercase the SKU column:SELECT LOWER(SUBSTRING(LocalSKU, 1, 20)) AS Lower, QOHFROM InventoryWHERE WebItem='YES';
anybody can please tellme what can i do?thanks in advance