Hello,
Please note I am working a macro to create folders with a specific path address If I leave the path address in Visual Basic backend as below it works, but for some reason when I assigned a cell or range("D28").value Visual basic app detects there is a "?" in the path address as "?C:\Users\TTT90\Desktop\Test Files" and unfortunately, I was not able to do it in that way, that it is something in the past I did.
So, appreciate if someone knows the reason why this imaginary question mark appears. Note I already tried to remove it before having the final path but still appearing xD, getting me crazy.
Regards
Andres
Please note I am working a macro to create folders with a specific path address If I leave the path address in Visual Basic backend as below it works, but for some reason when I assigned a cell or range("D28").value Visual basic app detects there is a "?" in the path address as "?C:\Users\TTT90\Desktop\Test Files" and unfortunately, I was not able to do it in that way, that it is something in the past I did.
So, appreciate if someone knows the reason why this imaginary question mark appears. Note I already tried to remove it before having the final path but still appearing xD, getting me crazy.
VBA Code:
Dim PathAddress As String 'Change the Path Address to your Unit
PathAddress = "C:\Users\TTT90\Desktop\Test Files"
Regards
Andres