Dec 13 2022 08:21 PM - edited Dec 13 2022 08:55 PM
Because my Excel Workbook was relocated without my knowledge, I am thinking of using Excel Function to display its location.
As-Is,
/**
* This script logs the name of the workbook with extension.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the workbook's name.
let name = workbook.getName();
// Display the name in the console.
console.log(name);
}
How to display Document location in Workbook ?
Thanks Ahead!