Solved
How to convert datatable's data into Number
As I want to retrieve data from datatable and do calculation with number, how to convert data in the datatable
As I want to retrieve data from datatable and do calculation with number, how to convert data in the datatable
Hello
RenameField returns an INFOTABLE and not an INTEGER, so you probably want to do something like this:
var result = parseInt(output.value);
// or
var result = parseInt(output.rows[0].value);
/ Constantine
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.