Celin.CALLVOLATILE(func name, one or more parameters)

A Volatile Run of a function, with optional parameter. The difference from a normal function call is that Volatile functions are run each time a spreadsheet re-calculation occurs. A good example is a date function.

Example

Return current date.

Celin.CALLVOLATILE("today")

today function:

func today
const options = {
 weekday: 'short',
 day: 'numeric',
 month:'short',
 year: 'numeric',
};
const tm = new Date();
return [[tm.toLocaleString('en-AU', options)]];

Copyright © 2020 Finnur Bragason.