Notifications
Clear all
VBA & Macros
2
Posts
2
Users
0
Reactions
60
Views
Topic starter
Dear all,
Any body can help me for below VBA code.
Workbooks.Open ("ThisWorkbook.Path & " "abc.xlsx") this code not working.
Posted : 19/08/2021 6:15 am
I believe it is this part in red:
Workbooks.Open ("ThisWorkbook.Path & " "abc.xlsx").
You would need to change it to
Workbooks.Open (ThisWorkbook.Path & " abc.xlsx"), I do believe.
I'm just learning though and peruse this thread to learn, so someone may need to fact check me on this!
Posted : 19/08/2021 11:37 am