Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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...
  • selimovd's avatar
    5 years ago

    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