Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
boris_dol
Contributor II
Contributor II

orginize and comabins

hello,

 

Im traing to get a new table from "total coast" by year and region, cant faind the right way

 

1/6/18EastJonesPencil95                     1.99                189.05
1/23/18CentralKivellBinder50                   19.99                999.50
2/9/18CentralJardinePencil36                     4.99                179.64
2/26/18CentralGillPen27                   19.99                539.73
3/15/18WestSorvinoPencil56                     2.99                167.44

 

ty for your time

1 Solution

Accepted Solutions
Kushal_Chawda

You can do something like below

Data:

LOAD year(Date) as Year,

             Region,

            sum([Total cost]) as Cost

FROM Table

group by year(Date), Region;

View solution in original post

6 Replies
Kushal_Chawda

Can you please elaborate?

boris_dol
Contributor II
Contributor II
Author

I need to present a new table , thats  shows total by year and region

Kushal_Chawda

which table and where you want to do it? In script or in front end?

boris_dol
Contributor II
Contributor II
Author

In script plz

Kushal_Chawda

You can do something like below

Data:

LOAD year(Date) as Year,

             Region,

            sum([Total cost]) as Cost

FROM Table

group by year(Date), Region;

boris_dol
Contributor II
Contributor II
Author

tyvm