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

Create a Measure based on string value

Hello!

I'm starting to learn DAX but running into issues where I need to create measures based on STRING values.  For example:

I need to count the number of occurances of the string "FTA" (Failure To Appear) in the Court Hearing Result column between a specified date starting and ending date range.  

 

IN addidtion, I then need to make another meausre off of that expressing the percentages of FTA results based on the Total COUNT of hearings in that data range.

 

Can someone help me with these DAX formulas?

 

Thank you!

4 ACCEPTED SOLUTIONS
Anonymous
Not applicable

@Kevykev Create a calculated column: 

 

HasFTA := IF (Find("FTA",[Court Hearing Result],1,-1) = -1, 0, 1)

 

Create a new measure as FTACount = SUM([HasFTA]) in the same table where you created a new column "HasFTA"

 

Then a TotalRecords = CALCULATE(COUNTROWS(TABLE),ALL)

 

Percentages would be FTA% = [FTACount]/[TotalRecords] 

View solution in original post

Tahreem24
Super User
Super User

@Kevykev ,

 

YOu can create a measure based on string condition using FILTER DAX. Please follow the below DAX meausre to get your output:

Measure = CALCULATE(COUNT('Table'[Court Hearing Result]),FILTER(ALL('Table'),'Table'[Court Hearing Result]="FTA"),DATESBETWEEN('Table'[DateColumn],FIRSTDATE('Table'[DateColumn]),LASTDATE('Table'[DateColumn])))
 
Don't forget to give thumbs up 👍 and accept this as a solution if it helped you.
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

Thank you very much.  This helps me greatly be getting an example that I can now see applied to my data model and business use case!

View solution in original post

Thank you very much.  This helps me greatly be getting an example that I can now see applied to my data model and business use case!

View solution in original post

4 REPLIES 4
Tahreem24
Super User
Super User

@Kevykev ,

 

YOu can create a measure based on string condition using FILTER DAX. Please follow the below DAX meausre to get your output:

Measure = CALCULATE(COUNT('Table'[Court Hearing Result]),FILTER(ALL('Table'),'Table'[Court Hearing Result]="FTA"),DATESBETWEEN('Table'[DateColumn],FIRSTDATE('Table'[DateColumn]),LASTDATE('Table'[DateColumn])))
 
Don't forget to give thumbs up 👍 and accept this as a solution if it helped you.
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Thank you very much.  This helps me greatly be getting an example that I can now see applied to my data model and business use case!

Anonymous
Not applicable

@Kevykev Create a calculated column: 

 

HasFTA := IF (Find("FTA",[Court Hearing Result],1,-1) = -1, 0, 1)

 

Create a new measure as FTACount = SUM([HasFTA]) in the same table where you created a new column "HasFTA"

 

Then a TotalRecords = CALCULATE(COUNTROWS(TABLE),ALL)

 

Percentages would be FTA% = [FTACount]/[TotalRecords] 

Thank you very much.  This helps me greatly be getting an example that I can now see applied to my data model and business use case!

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.