I have this bit of code
that gives me a path not found error. I know the path exists and have modified it to a simple c:\Testing path just to see if that was the problem and I get the same error. In the end, I would like it to create a directory in that path with the current date as the folder name.
Thanks
Code:
If Dir("R:\Database Tables\Database Dashboard History\" & Date, vbDirectory) = "" Then
MkDir ("R:\Database Tables\Database Dashboard History\" & Date)
Else
that gives me a path not found error. I know the path exists and have modified it to a simple c:\Testing path just to see if that was the problem and I get the same error. In the end, I would like it to create a directory in that path with the current date as the folder name.
Thanks
Last edited: