After exporting excel i noticed that a new row was added, not sure where that data came from, data is ok.
var specs = { UnitId: {width:80}, type: {width:100},fecha: {width:200}, latitude:{width:100}, longitude: {width:100}, engineSpeed: {width:80}, totalUsedFuel:{width:80}, fuelRate:{width:80}, fuelLevel: {width:80} };
var dataset = data;
var report = excel.buildExport([{ name: 'KPIs', heading: heading, specification: specs, data: dataset }]);
Do i need to specify the merge param?

After exporting excel i noticed that a new row was added, not sure where that data came from, data is ok.
var specs = { UnitId: {width:80}, type: {width:100},fecha: {width:200}, latitude:{width:100}, longitude: {width:100}, engineSpeed: {width:80}, totalUsedFuel:{width:80}, fuelRate:{width:80}, fuelLevel: {width:80} };var dataset = data;var report = excel.buildExport([{ name: 'KPIs', heading: heading, specification: specs, data: dataset }]);Do i need to specify the merge param?
