Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Needs to display total sales made in each year. But the company maintains its sales transactions with full timestamp (dd:MM:yyyy:hh:mm) not just the year in form of DateOfSale column which is of Date type. What would you suggest Theon to do in order to meet this requirement
Which one is correct in the below :
Use code as below:
Load
field1,
Fieild2,
Sales,
......
Year(DateOfSale) as Year
From....
;
No Need of grp by
use a straight table Dimension: Year(You created in Script) Measure:Sum(Sales)
Use code as below:
Load
field1,
Fieild2,
Sales,
......
Year(DateOfSale) as Year
From....
;
No Need of grp by
use a straight table Dimension: Year(You created in Script) Measure:Sum(Sales)