Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
write the script to derive output from input table
Hi,
Try this.
In dimension give Category and in measure give Max(Sales).
Hi,
Try this.
In dimension give Category and in measure give Max(Sales).
Hi,
Where you need this output
1. In Load script
2. Front end
Regards,
Anand
On load script you can try this
DBSource:
LOAD * Inline
[
Product,Category,Sales
1,x,4000
2,x,5000
3,y,2000
4,y,4300
];
MaxSales:
LOAD
Category,
Max(Sales) as MaxSale
Resident DBSource
Group By Category;
Regards
Anand