March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I need to count the lines with specific word in a column containgingdiferents words.
I though to do something like:
data1 = countx ( filter( table, table[column] = "*wordtofind*"), [column to count])
This measure working only if the wordtofind is the only value in the cell.... but I wanto to count also if part of a sentence or part of long word.
May help me?
Thx
Solved! Go to Solution.
Hi, @Mgg
use something like this:
Activated = COUNTROWS(FILTER('Table', CONTAINSSTRING('Table'[Company], "See")))
This will look for "See" in Column "Company" in table "Table".
Hi, @Mgg
use something like this:
Activated = COUNTROWS(FILTER('Table', CONTAINSSTRING('Table'[Company], "See")))
This will look for "See" in Column "Company" in table "Table".
I'm not sure is exactly what I need.
Looking in the following table I need to count the number of Prj if in column type there is the word see ...also if combine with other.
The result should be 3....so the yellow onr 🙂
Thx
Hi, @Mgg ,
CALCULATE(
COUNTROWS('Table'),
CONTAINSSTRING('Table'[Company], "See") && NOT (ISBLANK('Table'[Prj]))
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
132 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |