Open function with relative file location
I need to use the open function with a relative file location. The following code finds the location, and stores the path to the file in the variable RelativeLocation
relativePath = Get Default Directory();
UPtwo = Left( relativePath, Contains( relativePath, "/Folder/", -2 ) );
RelativeLocation = UPtwo || "Excel_file.xlsx";
However, when using the Open function with the RelativeLocation
variable, t...