DCount table in another db

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Any advise/suggestions on the following would be appreciated.

A make table query is run from the current db - that table is made in a 2nd
db.

I want the user to know how many records that new table contains.

Can you use Dcount, if so how, or is there a better way?

TIA

Tom
 
hi Tom,
Any advise/suggestions on the following would be appreciated.
A make table query is run from the current db - that table is made in a 2nd
db.
How do you create it, a code sample would be nice.
I want the user to know how many records that new table contains.
Can you use Dcount, if so how, or is there a better way?
A query could do it:

SELECT Count(*)
FROM NewTable
IN PathAndFilenameOtherMDB


mfG
--> stefan <--
 
Many thanks

Works perfectly

Tom

Stefan Hoffmann said:
hi Tom,

How do you create it, a code sample would be nice.

A query could do it:

SELECT Count(*)
FROM NewTable
IN PathAndFilenameOtherMDB


mfG
--> stefan <--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Dcount (multiple criteria) 3
Access Dcount function in access 0
DCount alwaysreturning 1 0
DCount In Otherdb 27
Dcount Error Msg 3
DCount in Subform question 1
DCOUNT segregation 2
CmdButton, Listbox and MsgBox in a Form 4

Back
Top