Hi.
2 problems regarding access sql or vb:
1.Using sql as follows, retrieves 1 empty record, though I have lots of records start with capital a :
SELECT name
FROM myTable
WHERE name like "A%";
Any idea?
2. I'd like to create a query or use vba or whatever in order to get a list in which each record holds the number of clients that there name start with each letter:
names start with A: 30
names start with B: 290
...
names start with z: 78
Any idea is welcome.
Thanks in advance
2 problems regarding access sql or vb:
1.Using sql as follows, retrieves 1 empty record, though I have lots of records start with capital a :
SELECT name
FROM myTable
WHERE name like "A%";
Any idea?
2. I'd like to create a query or use vba or whatever in order to get a list in which each record holds the number of clients that there name start with each letter:
names start with A: 30
names start with B: 290
...
names start with z: 78
Any idea is welcome.
Thanks in advance