Recordset Type Mismatch

foxhound

Board Regular
Joined
Mar 21, 2003
Messages
182
The following works in a query but I am getting a type mismatch when used in VBA. Can anyone tell me what I am doing wrong? (Using Access 2000, have dimmed the recordset as DAO and "Super" is a number field)

set numSubs = "SELECT DISTINCTROW Count([Employee Snapshot].EmpName) AS SubCount FROM [Employee Snapshot] WHERE ((([Employee Snapshot].Super)=3014912));"
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I think that you probably have the wrong bit with "Set numSubs"

What data type have you dim'ed numSub as?

Peter
 
Upvote 0
Try something like

Dim dbs As DAO.Database
Dim strSql As String
Dim numSubs As DAO.Recordset

Set dbs = CurrentDb()
strSql = "SELECT DISTINCTROW Count([Employee Snapshot].EmpName) AS SubCount FROM [Employee Snapshot] WHERE ((([Employee Snapshot].Super)=3014912));"
Set numSubs = dbs.OpenRecordset(strSql)

'clean up
Set numSubs = Nothing
Set dbs = Nothing
End Sub


HTH

Peter
 
Upvote 0
Oh, got another question...I have "CountofSubs" dim'ed as an integer. If no records exist in this recordset, how can I have "CountofSubs" equal 0 (zero) without giving me the run-time error 3265?
 
Upvote 0
Hi Peter. Thanks for the reply. I checked this board for examples of how to do a NZ() function and there wasn't anything. I also checked help in access and it didn't make it any clearer for me :( Would you mind explaing a little more how I can use that function in this scenario?
 
Upvote 0
I think that you will want something like

Set numSubs = dbs.OpenRecordset(strSql)
CountofSub = Nz(numSubs("subCount"))

If this causes an error due to no current record then try
Code:
Set numSubs = dbs.OpenRecordset(strSql) 
If numSubs.EOF = numSubs.BOF Then ' no records found
   CountofSub = 0
Else
   CountofSub = numSubs("subCount")
End If

HTH

Peter
 
Upvote 0

Forum statistics

Threads
1,221,657
Messages
6,161,084
Members
451,684
Latest member
smllchng5

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top