Forum Discussion
How to compute min GP% ?
Hi All
I have a table display YTD GP% , May i know how to capture the lowest GP% .
Above link is my PBI sample file :-
Paul Yeo
Hey admin11 ,
you have to build this table first internally and then get the minim value. Try the following measure:
Min GP% = VAR tempTable = ADDCOLUMNS ( SUMMARIZE ( SALES, SALES[inv] ), "GP% YTD", [GP% YTD] ) VAR result = MINX ( tempTable, [GP% YTD] ) RETURN resultIf you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution βοΈ and give it a thumbs up π
Best regards
Denis
Blog: WhatTheFact.biEdit: SamFischer was faster, his solution should work as well π
2 Replies
- selimovdMost Valuable Professional
Hey admin11 ,
you have to build this table first internally and then get the minim value. Try the following measure:
Min GP% = VAR tempTable = ADDCOLUMNS ( SUMMARIZE ( SALES, SALES[inv] ), "GP% YTD", [GP% YTD] ) VAR result = MINX ( tempTable, [GP% YTD] ) RETURN resultIf you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution βοΈ and give it a thumbs up π
Best regards
Denis
Blog: WhatTheFact.biEdit: SamFischer was faster, his solution should work as well π
- SamFischerFrequent Visitor
Hi admin11,
You'd have to iterate over the [GP% YTD] measure for each invoice, and find the minimum value from that. Try the measure below... (note that you'll want to replace 'Table' with whatever the home table for the inv column is)
Min GP % =
VAR GPbyInvTable =
SUMMARIZE ( VALUES ( 'Table'[inv] ), 'Table'[inv], "GP% YTD", [GP% YTD] )
RETURN
MINX ( GPbyInvTable, [GP% YTD] )Cheers,
SamBlog: ApexInsights.net