I have 2 tables called ReportTaracker and Sheet1. The fields are:
ReportTracker
1.Report_Num
2.Facility_Name
3.Unit
Sheet1
1.Resident
2.Physician
3.Comment
I would like to create a TEMP table. The join can be created from the number '1' at the end of the Sheet1 table name and the Report_Num. I have been able to get the Sheet# before via inputbox:
I am having problems with the INSERT query language in VBA. Any directions appreciated.
Thanks,
Carl23
ReportTracker
1.Report_Num
2.Facility_Name
3.Unit
Sheet1
1.Resident
2.Physician
3.Comment
I would like to create a TEMP table. The join can be created from the number '1' at the end of the Sheet1 table name and the Report_Num. I have been able to get the Sheet# before via inputbox:
Code:
MyValue1 = InputBox("Enter File Number", "MyInputbox") tblname = "Sheet" & MyValue1
Thanks,
Carl23
Comment