In Excel2013 (32Bits) two FD.Show are called but one of them does not work. the file selection window does not show and proceed next statement directly. how to resolve this?
my example code)
Set FD = Application.FileDialog(msoFileDialogFilePicker)
With FD
.Show
If .SelectedItems.Count > 0 Then
workbook1 = .SelectedItems(1)
End If
.Show
If .SelectedItems.Count > 0 Then
workbook2 = .SelectedItems(1)
End If
End With