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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
Kebas_Leech
Helper I
Helper I

Countrows based on filtered measure type text

Hello Everyone,

I have been trying to solve this but i've been unsuccessful so far.

 

The following measure [perf_shift] calculates and prints in which shift i have the max performance, based on another measure [performance]:

 

VAR vals =
SUMMARIZE(
    'Main_Table',
    'Main_Table' [Shifts],
    "Measure", [performance]
) 
VAR measureMax = MAXX( vals, [performance] ) 
VAR perf_shift = CALCULATE(
    MAXX(
        FILTER( vals, [Measure] = measureMax ),
        'Main_Table' [Shifts]
    )
) 

RETURN
perf_shift

 

Returns: (filter: Production Line and Product Type)

Production LineProduct TypePerf_Shift
1type x1st
1type y1st
1type z1st
2type y2nd

 

Now, what im trying to calculate is the total sum of 1st and 2nd shifts that I end up with based on the same filters.

Expected Result:

 

ShiftCount
1st3
2nd1

 

Thank you!

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Kebas_Leech , You need to do dynamic segmentation

 

Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ

 

Above is for single value what you need

 

range value example

Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

tamerj1
Community Champion
Community Champion

Hi @Kebas_Leech 

you need first to creat a disconnected table that contains { "1st", "2nd" } let's call it Shifts which you're going to use in the visual 

then use the following measure 

Count =
SUMX (
    SUMMARIZE ( 'Main_Table', 'Main_Table'[Production], 'Main_Table'[LineProduct] ),
    IF ( [Perf_Shift] = MAX ( Shifts[Shift] ), 1 )
)

View solution in original post

3 REPLIES 3
Kebas_Leech
Helper I
Helper I

Both replies helped. Thank you so much!

tamerj1
Community Champion
Community Champion

Hi @Kebas_Leech 

you need first to creat a disconnected table that contains { "1st", "2nd" } let's call it Shifts which you're going to use in the visual 

then use the following measure 

Count =
SUMX (
    SUMMARIZE ( 'Main_Table', 'Main_Table'[Production], 'Main_Table'[LineProduct] ),
    IF ( [Perf_Shift] = MAX ( Shifts[Shift] ), 1 )
)
amitchandak
Super User
Super User

@Kebas_Leech , You need to do dynamic segmentation

 

Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ

 

Above is for single value what you need

 

range value example

Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.