function

savexls . string . sncode

VERSIONlatest Export data to xls (Excel format)

SAVEXLS

NAME

savexls - Exports data to xls (Excel format), note that this function only supports .xls format

SYNOPSIS

savexls(data,file)

PARAMETERS

data
The data to be exported. file File where it has to be saved.

RETURN

Returns true if the operation has succedeed, and returns false otherwise.

EXAMPLES

savexls(
        [
            ['title1','title2'],
            ['aaa',123],
            [124,'dfg']
        ]
        ,'test.xls'
        ,true);

AUTHOR

Written by Pusnei Sergey and Caroline Laplante, <sergey@sednove.com>