I understand some VBA, mainly in EXCEL which (as you say) is different to
ACCESS. I have, however, some competence with ACCESS. The table names are,
for example, repertorium1, repertorium2, repertorium3, and so on. I want to
embody the word "repertorium" in the code with the inputbox prompt simply
being "what report number ?". Then the number is joined to the word
repertorium (which never changes), to become the table name. For example,
"repertorium" is in the code, the number 19 is input, and the table name is
"repertorium19".
thanks for your help ... Roger
> So you want the macro to ask for the table name once, and then export all
> the tables that start with that table name excerpt? That is a bit trickier
[quoted text clipped - 32 lines]
>>>
>>> Tom Lake
Ken Snell (MVP) - 29 Jun 2006 23:26 GMT
="repertorium" & InputBox("Enter name of table to be exported:",
"TableName")

Signature
Ken Snell
<MS ACCESS MVP>
>I understand some VBA, mainly in EXCEL which (as you say) is different to
>ACCESS. I have, however, some competence with ACCESS. The table names are,
[quoted text clipped - 43 lines]
>>>>
>>>> Tom Lake
Ken Snell (MVP) - 30 Jun 2006 02:46 GMT
Sorry :
="repertorium" & InputBox("Enter number of table to be exported:",
"TableName")

Signature
Ken Snell
<MS ACCESS MVP>
> ="repertorium" & InputBox("Enter name of table to be exported:",
> "TableName")
[quoted text clipped - 46 lines]
>>>>>
>>>>> Tom Lake
Roger - 30 Jun 2006 07:24 GMT
Great ! Thanks
Roger
> Sorry :
>
[quoted text clipped - 52 lines]
>>>>>>
>>>>>> Tom Lake