Change Name of the output for a Make Table Query

dprante

New Member
Joined
Feb 27, 2013
Messages
8
I need to output a table to share on a SharePoint site, but need date inlcuded in the table name. Is there a way to systimatically change the name of the table a make table is creating? vb or otherwise?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You can do this in code; you will need to rewrite the SQL string in VBA, then run it.

Example:
Code:
Dim strSQL As String
Dim strName As String
strName = "tmakSomething " & Format(Now(),"yyyymmdd")
strSQL = "SELECT tblDummy.Field1, tblDummy.Field2 INTO " & strName & " FROM tblDummy;"
CurrentDb.Execute strSQL

Denis
 
Upvote 0
You can do this in code; you will need to rewrite the SQL string in VBA, then run it.

Example:
Code:
Dim strSQL As String
Dim strName As String
strName = "tmakSomething " & Format(Now(),"yyyymmdd")
strSQL = "SELECT tblDummy.Field1, tblDummy.Field2 INTO " & strName & " FROM tblDummy;"
CurrentDb.Execute strSQL

Denis


Awesome! thank you so much for this!
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,175
Members
449,071
Latest member
cdnMech

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