Maximum of a calculated measure

Nickuk84

New Member
Joined
Aug 1, 2017
Messages
1
Hi

Little bit of a complicated one (for me) so i'll explain as best I can and would appreciate some help from the experts (you :))

I have create a measure that basically says if the cumulative total is less than or equal to whatever the percentage threshold is (this changes via a slicer), then take the ranking value + 1 (it has to have the plus one long story but that's the thing making it difficult), I want to find the maximum value of this calculated column:

IF([Cumulative Total]<=[Percentage Threshold],[Broker Parent Ranking],0)+1

is it possible?





 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You say both Measure and Calculated Column in your post. For calculated Column it's just a simple MAX ( Table[Column] ).

For a measure you need to iterate over the list that you want the measure calculated over. For example if my data is for one year and I want the maximum monthly value it would look like this:

Code:
MAXX ( 
    VALUES ( Table[Months] ),
    [Measure]
)
 
Upvote 0

Forum statistics

Threads
1,215,398
Messages
6,124,694
Members
449,179
Latest member
kfhw720

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