drastically reduce time to create photo folders
This commit is contained in:
@ -50,6 +50,16 @@ export function getColumnValuesByName(
|
||||
}
|
||||
}
|
||||
|
||||
export function getColumnRichTextByName(
|
||||
sheet: GoogleAppsScript.Spreadsheet.Sheet,
|
||||
columnName: string
|
||||
) {
|
||||
let column = getColumnRangeByName(sheet, columnName)
|
||||
if (column != null) {
|
||||
return column.getRichTextValues()
|
||||
}
|
||||
}
|
||||
|
||||
export function vlookupByColumns(
|
||||
sheetName: string,
|
||||
searchColumn: string,
|
||||
|
||||
Reference in New Issue
Block a user