Can you define from which cell onwards I want the script to start pasting? Default is A1, but I would like to add some headlines, thus would need a paste starting from A2, but if I change the parking cell in the script, nothing happens...
err add the headers afterwards
you could change
this bit
'------------ LOOK IF EXISTS SOME FILES
MASQ_FILE = DIR_Name & "\*.xl*"
DIR_Result = Dir(MASQ_FILE, 0) ' 0 --> READ ONLY FILES
I = 1
Application.ScreenUpdating = False
While (DIR_Result <> "")
to
'------------ LOOK IF EXISTS SOME FILES
MASQ_FILE = DIR_Name & "\*.xl*"
DIR_Result = Dir(MASQ_FILE, 0) ' 0 --> READ ONLY FILES
I = 2
Application.ScreenUpdating = False
While (DIR_Result <> "")
Bookmarks