Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi everyone!
I'm having a issue to solve this problem.
I need the max Value of the quote for each item, and at the end i need the sum of the highest values
For Example
The max value of code 4, item 473 is $48,000.00
The max value of code 4, item 914 is $13,920.00
The max value of code 4, item 2599 is $13,886.40
The max value of code 4, item 2853 is $14,250.00
The max value of code 4, item 2854 is $20,000.00
The max value of code 4, item 2855 is $32,100.00
And the total value of the quote would be $142,156.40
Solved! Go to Solution.
Hi @RenanVentura ,
Depending on the information you have provided, there seems to be some problems with the logic of the calculations you gave, which I have corrected. You can follow these steps below:
1.Add an index column.
2.Add new measure.
MAX =
VAR _CODQUOTE =
SELECTEDVALUE ( 'Table'[Cod-Quote] )
VAR _CODPRODUCT =
SELECTEDVALUE ( 'Table'[Cod_product] )
VAR _RANK =
RANKX (
FILTER (
'Table',
'Table'[Cod-Quote] = _CODQUOTE
&& 'Table'[Cod_product] = _CODPRODUCT
),
CALCULATE ( MAX ( 'Table'[TOTAL VALUE] ) ),
,
DESC
)
RETURN
CALCULATE ( SUM ( 'Table'[TOTAL VALUE] ), FILTER ( 'Table', _RANK = 1 ) )
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @RenanVentura ,
Depending on the information you have provided, there seems to be some problems with the logic of the calculations you gave, which I have corrected. You can follow these steps below:
1.Add an index column.
2.Add new measure.
MAX =
VAR _CODQUOTE =
SELECTEDVALUE ( 'Table'[Cod-Quote] )
VAR _CODPRODUCT =
SELECTEDVALUE ( 'Table'[Cod_product] )
VAR _RANK =
RANKX (
FILTER (
'Table',
'Table'[Cod-Quote] = _CODQUOTE
&& 'Table'[Cod_product] = _CODPRODUCT
),
CALCULATE ( MAX ( 'Table'[TOTAL VALUE] ) ),
,
DESC
)
RETURN
CALCULATE ( SUM ( 'Table'[TOTAL VALUE] ), FILTER ( 'Table', _RANK = 1 ) )
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.