Steven Low
Active member
- Joined
- Apr 14, 2005
- Messages
- 42
- Programming Experience
- 1-3
Hi guys
Im creatingh a query in my access which allows
// symbols to be counted as numbers in the totalattendence
i got it to count the symbols but i only want it to count /// as number soo it counts /x/ anything but i only want it to count /
heres what i have done in sql view in access
Im creatingh a query in my access which allows
// symbols to be counted as numbers in the totalattendence
i got it to count the symbols but i only want it to count /// as number soo it counts /x/ anything but i only want it to count /
heres what i have done in sql view in access
SELECT student.StudentID, student.Firstname, student.Lastname, student.Age, student.[Dance Stage], student.Attendence, student.tname, Len([Attendence]) AS totalattendence
FROM student;