I am looking for a way to search and locate specific text within my index spreadsheet that is related to the values in columns A and B. These values are used to create product folders and Google sheets based on a naming convention.
The product folder is named using the formula:
FolderName = ref + ' - ' + location
, which is stored inside a main parent folder. Within this product folder, a Google sheet is created with the name: newDocName = ref + ' [Descriptions] - ' + location
In the index spreadsheet, I want to automatically populate column L & M with links to the corresponding product folder and sheet file. Is it possible to achieve this directly within the spreadsheet or would I need to use Google Apps Script with an On Open trigger?
If utilizing Google Apps Script is necessary, how can I implement a script to search for and fill in the correct folder and file links in columns L & M? Any guidance would be appreciated.
Thank you.