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
Peckle
Regular Visitor

Most Frequently Occurring Text / Aggregating String Values

Hi All, 

 

I'm having trouble finding out how I can portray the mode of a text/string value using DAX.

 

Below is a snippet of my data.

 

I want to be able to show the Audit result by Division based on the frequency of the result, 

 

E.g.

 

FP Division = A

P Division = A

G Division = A

 

 

Data.PNG

 

Any help on this!

 

Thanks

7 REPLIES 7
Anonymous
Not applicable

Hi @Peckle,

 

Just trying to understand your question. Do you need to see how many times a Division received A or AA in Audit?

@Peckle

 

Seeminlgy you need the most recurring audit for each division

 

Try this MEASURE

 

Measure =
VAR MaxCount =
    MAXX ( VALUES ( Table1[Audit] ), CALCULATE ( COUNT ( Table1[Audit] ) ) )
RETURN
    CONCATENATEX (
        FILTER (
            VALUES ( Table1[Audit] ),
            CALCULATE ( COUNT ( Table1[Audit] ) ) = MaxCount
        ),
        [Audit],
        ", "
    )

Regards
Zubair

Please try my custom visuals

Thanks, this worked for me (after trying many other approaches!)

@Zubair_Muhammad

 

That's right. I want to display the most recurring audit for each division

 

Thanks I'll try this! 

Hi @Peckle,

 

Did you resolve your issue? If so, please kindly mark the corresponding reply as an answer. It will benifit others with relevant issues. If not, please feel free to ask. Smiley Happy

 

Thanks,
Xi Jin.

Hi @v-xjiin-msft

 

Thanks for reaching out!

 

Unfortunately, I couldn't get the second part of the syntax to return a value. 

 

Thanks

 

Hi @Peckle,

 

=> Unfortunately, I couldn't get the second part of the syntax to return a value. 

 

Did you get any error message? Could you please share us some screenshots about your issue if possible?

 

Thanks,
Xi Jin.

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.