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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
talaespinosa
Frequent Visitor

Count sub_categories

Hi, I need to create a measure that counts strings under one category. I have already access to the result but using 

CONCATENATEX function that turns the result into string.  I need to have access to this result in number format for using it later as a filter in other analysis.

The measure that I have used:

count_main_routes =
VAR full_table =
    SUMMARIZE (
        relation_table,
        table1[acronym],
        "count",  DISTINCTCOUNT(table2[sub-category])
    )
VAR in_text =
    CONCATENATEX ( full_table, [count], ", " )
RETURN
    in_text
 
Thanks in advance

acronym 
++sub-category 1 
++sub-category 2 
  
expected result 
 count
acronym2
1 REPLY 1
amitchandak
Super User
Super User

@talaespinosa , simply DISTINCTCOUNT(table2[sub-category]) should give the count.

 

or try like

 

VAR in_text =
"acronym " & CONCATENATEX ( full_table, [count], ", " )

 

 

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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