Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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....
Solved! Go to Solution.
Hey @Anonymous ,
try the following approach:
Rows with Material =
CALCULATE(
COUNTROWS( 'App Forms' ),
LEFT( 'App Forms'[Impact], 8 ) = "Material"
)
Hey @Anonymous ,
try the following approach:
Rows with Material =
CALCULATE(
COUNTROWS( 'App Forms' ),
LEFT( 'App Forms'[Impact], 8 ) = "Material"
)
many thanks
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |