I've never worked with file paths before.
I have multiple columns that determine the name of certain subfolders in a location on my computer.
I created a column that stitches multiple values from columns, to generate the appropriate file path as such:
"C:\MainFolder\Subfolder1\Subfolder2\" || :Subfolder3 || "\" || :Subfolder4 || "\" || :FileName
The only issue that remains is adding the appropriate extension to the end of the file name (.abc or whatever it may be).
Is there a way to match the file name that I have in my columns, to the file name on my computer, and have it auto-complete by adding the extension at the end?
This is probably not the correct technique to search for a file, so having a more complex code will be welcomed as well.