I have a folder of files that I need to link to from the spreadsheet using HYPERLINK()
This folder will be zipped up and sent to others, so all the links need to be relative.
I have tried every variation that I can think of from the online examples, each either says it cannot be found or there is an error in the format.
e.g.
=HYPERLINK(“example.png”,“hi”)
=HYPERLINK("./example.png",“hi”)
=HYPERLINK(“file:/./example.png”,“hi”)
=HYPERLINK(“file:///./example.png”,“hi”)
=HYPERLINK(“file:///example.png”,“hi”)
=HYPERLINK(“file:/example.png”,“hi”)
What is the correct syntax fro a relative link?