I'm creating a data file. For one of the things I have calculate the number of suppliers.
This is what I have so far:
SELECT Data.Field8
FROM Data
GROUP BY Data.Field8
HAVING (((Data.Field8)<>""));
the data shows some numbers is there a way to exclude all the numbers? And does anyone know how it'll give me the # of suppliers? There are about 55 on the list.
This is what I have so far:
SELECT Data.Field8
FROM Data
GROUP BY Data.Field8
HAVING (((Data.Field8)<>""));
the data shows some numbers is there a way to exclude all the numbers? And does anyone know how it'll give me the # of suppliers? There are about 55 on the list.