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,
I am rying to create a measure that looks in to a column and if the column includes the value than true
ie
new measure = columnA include/has 'TWO' . Two could be in a sentence with 10 to 20 words
id ColumnA
1 one,two,three,four,five,six.seven
2 one,one,five,six,six,ten
3 six,seven,eight,five,six
so the new measure should return 1
I hope that make sense
thanks
Solved! Go to Solution.
@Anonymous,
Learn the function by links below.
@Anonymous,
You may try the measure below.
Measure = VAR s = "TWO" VAR d = "," RETURN COUNTROWS ( FILTER ( Table1, SEARCH ( d & s & d, d & Table1[ColumnA] & d, 1, 0 ) > 0 ) ) > 0
thanks
thanks for the respond,
I am not sure if I undrestand the " d & s & d, d & Table1[ColumnA] & d, 1, 0 ) > 0 " part , could you please explain briefly , thanks
@Anonymous,
Learn the function by links below.
Thanks
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 |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |