Summarise and rank sales data...

Matty

Well-known Member
Joined
Feb 17, 2007
Messages
3,717
Hi,

I have two tables: FactSales and DimProduct.

I have created a table using the following:

Code:
Summary =SUMMARIZECOLUMNS ( DimProduct[Product], "Total Sales", [Sales] )

Where [Sales] is a measure already used elsewhere and references the FactSales table.

I now want to add a rank column (descending) to the above table based on [Sales]. Can I do the ranking as part of the same formula, or do I need to create a separate calculated column once the table's created?

Cheers,

Matty
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi Matty,

This should do the trick:

Code:
Summary =
SUMMARIZECOLUMNS (
    DimProduct[Product],
    "Total Sales", [Sales],
    "Rank", RANKX ( ALL ( DimProduct[Product] ), [Sales] )
)

The resulting table will include rows with blank values for [Sales], ranked as though [Sales]=0. If that matters, it would need to be tweaked slightly.

Regards,
Owen
 
Upvote 0
Hi Owen,

Just got back to this project and your suggestion works perfectly.

Thanks (again) for your help!

Cheers,

Matty
 
Upvote 0

Forum statistics

Threads
1,214,667
Messages
6,120,808
Members
448,990
Latest member
rohitsomani

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top