In VB Script of Excel Macro Module , I can call excel formula in script for example:
iRow = application.match(a,b)
But in Google Spreadsheet, How Can I call spreadsheet formula by Javascript?
In VB Script of Excel Macro Module , I can call excel formula in script for example:
iRow = application.match(a,b)
But in Google Spreadsheet, How Can I call spreadsheet formula by Javascript?
It's not possible. See this enhancement request on the issue tracker.
You have to either implement it yourself (e.g. a match
formula is very trivial) or write the formula somewhere on the spreadsheet and fetch its result.