Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
while Creating the autonumber Loading issue is coming on Result Table
//Scripting code for AutoNumber RegionSales:Load *,AutoNumber(Date&Month&Year) as RDYM;Load * Inline[Date,Month,Year,Sales17,08,1992,80017,08,1992,70023,05,1992,90023,05,1992,90007,08,2019,100023,05,1992,900];Store RegionSales into [lib://DataFiles/RegionSales.qvd](qvd);Result:LoadDate,Month,Year,Sum(Sales) as TotalResident RegionSales;Drop Table RegionSales;
Dataload Error in the below
well... aggregations in script (as in all sql) need to be used in combination with a group by expression...
Result:LoadDate,Month,Year,Sum(Sales) as TotalResident RegionSales
group by Date,Month,Year;Drop Table RegionSales;