Forum Discussion
Anonymous
5 years agoNot 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...
- 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 regardsDenisBlog: WhatTheFact.biFollow me: twitter.com/DenSelimovic
selimovd
5 years agoMost Valuable Professional
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
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
- Anonymous5 years agoNot applicable
many thanks