I am almost positive I am going about this all wrong - I am trying to open files out of the directory dialog and set them based on a wildcard name. I am thinking it has to do with the declarations between as workbook or as string or as variant. I'll eventually be using 'Windows().Activate' to switch between them. I have the code below.
Code:
Sub Data_Import2()
Dim wb As Workbook
Dim ws As Worksheet
Dim ExtFiles As Variant
Dim ExtFile_1 As Variant
Dim ExtFile_2 As Variant
'Dim File_Path As String
Application.DefaultFilePath = ActiveWorkbook.Path
ExtFiles = Application.GetOpenFilename(FileFilter:="Excel Workbooks (*.xlsx; *.xlsm),*.xlsx;*.xlsm", _
Title:="Select File", MultiSelect:=True)
Set ExtFile_1 = ExtFiles.Name("*Class1.xlsx")
Set ExtFile_2 = ExtFiles.Name("*Class2.xlsx")