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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
renatof
Frequent Visitor

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.