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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Tricky - Text Count first 8 letters

Hi Experts

 

I have several columns with text in each column that start with the word MATERIAL - blah blah etc.... i to be able to count those fields that start with the word material as opposed to typing in the full text each time...

 

My current measure is

Countrows(filter(App Forms, [Impact]="Material")) which is not working....

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

try the following approach:

Rows with Material =
CALCULATE(
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Impact], 8 ) = "Material"
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

View solution in original post

2 REPLIES 2
selimovd
Super User
Super User

Hey @Anonymous ,

 

try the following approach:

Rows with Material =
CALCULATE(
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Impact], 8 ) = "Material"
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

Anonymous
Not applicable

many thanks

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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