This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi all,
I am sure you guys already resolved similar questions.
I am looking at the following table (this is just a sample). I want to SUM the Rate_VS_Tipo and DISTINCT by Processo_SGC.
What I want to achieve is get the SUM of the Rate, for each Processo_SGC where Processo_SGC must be a unique SUM. Meaning, in the below example the result would be 25,9. I am only getting the sum of all of them. Cheers
Solved! Go to Solution.
Hi @Anonymous
Try this measure
Measure =
CALCULATE (
SUM ( Sheet2[col2] ),
FILTER (
DISTINCT ( Sheet2 ),
[col1] = MAX ( [col1] )
&& Sheet2[Tipo_Processo_SGC] IN { "INC1", "INC2" }
)
)
If it doesn't work, please share the screenshot when you apply this measure in the table
Best Regards
Maggie
Hi @Anonymous
you create a column as below, right?
I create a measure as above, is this what you want?
Measure = CALCULATE(SUM(Sheet2[col2]),FILTER(DISTINCT(Sheet2),[col1]=MAX([col1])))
If not, please let me know your expected result based on my example.
Best Regards
Maggie
Hi Maggie,
Thank you so much!! I think that we got to the result, yes!
Now, I'd like to add this filter, can you plesase let me know how I could possibly do this:
Hi @Anonymous
Try this measure
Measure =
CALCULATE (
SUM ( Sheet2[col2] ),
FILTER (
DISTINCT ( Sheet2 ),
[col1] = MAX ( [col1] )
&& Sheet2[Tipo_Processo_SGC] IN { "INC1", "INC2" }
)
)
If it doesn't work, please share the screenshot when you apply this measure in the table
Best Regards
Maggie
Fantastic!
Thank you very much.
+++ And then I would like to filter it as well.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |