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

Get Fabric certified for FREE! Don't miss your chance! Learn more

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.