Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

Measure based on array

Hi all,

 

how to create a measure which will give me the sum of amount column based on multiple types. 

TypeAmount
012200206148.6
03010062136
0311007895
032010105835.8
1020005000
102000-500
102900-5000
102900500
14000252.5
1400021973.75
14023012663.94
220000-262.5
220000-9868.75
221000-50655.7
240240-12663.9
401400210
430000-206149
431200-167972
6500000
66000050655.74
9999900

 

 

For example, I want to sum all values where type begins with 4* or where types in (400000 till 499999 maybe this will be better).

 

I tried with manually typing every type like Four = CALCULATE(sum(Table[Amount]);filter(Table;Table[Type] = "401400" || Table[Type] = "430000")) but this is not good when I have table with 100 different types of 4. 

 

Best regards,

Renato Fajdiga. 

3 REPLIES 3
Vvelarde
Community Champion
Community Champion

@renatof

 

If Type Column is Text you can use Value to transform in Number

 

SUMWITH4 =
CALCULATE (
    SUM ( Table1[Amount] ),
    FILTER (
        Table1,
        VALUE ( Table1[Type] ) >= 400000
            && VALUE ( Table1[Type] ) <= 499999
    )
)



Lima - Peru
PavelR
Solution Specialist
Solution Specialist

@renatof

You could try using filters on the right pane (Page level, Report level). You can define interval of Type, and when Type column is duplicated with data type text, then you also can filter as starts with 43, end with, contains etc.

And then simply have sum measure of amount column.

 

But unfortunately I think you can't use any easy filter directly on the page screen of PBI to this purpose, just only these filters on the right pane.

 

Regards.

Pavel

 

That's partly correct but I need all values for field type which starts with 2, 4 and 6. On Visual filters I have only options to put 2 filters one or (and) another.

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.