aziz rasul
Active member
- Local time
- Today, 21:51
- Joined
- Jun 26, 2000
- Messages
- 1,935
I have the following snippet of code: -
On the last line I get error 13 i.e. 'Type mismatch'. Any ideas why this should be?
Even if I write
strSQL = "SELECT AdmissionLOS from StrokeLOSDATA;"
Code:
strSQL = "SELECT " & strField & " from " & strTable & " WHERE " & strField & ">0 Order by " & strField & ";"
Set rst = CurrentDb.OpenRecordset(strSQL)
On the last line I get error 13 i.e. 'Type mismatch'. Any ideas why this should be?
Even if I write
strSQL = "SELECT AdmissionLOS from StrokeLOSDATA;"
Last edited: