Forum Discussion
DennisGaida
8 years agoFrequent Visitor
Dynamic filtering/slicing if text contains
I have the following data: Date Text
2018-11-01 This is some random text
2018-04-03 Some test mumbling here
2018-02-01 Whatever we write here I have a visual (line chart) displayin...
- 8 years ago
Hi DennisGaida
May be you could use a MEASURE like
Measure = VAR searchvalue = SEARCH ( SELECTEDVALUE ( Text_Queries[Column1] ), SELECTEDVALUE ( Table1[Text] ), , BLANK () ) RETURN IF ( searchvalue > 0, "Found" )See the attached file. I am not sure if this what you need
renaudstaessens
Helper I
5 years agoAnonymous : where is the code David 🙂 there's no hyperlink with the word here
Anonymous
5 years agoNot applicable
renaudstaessens wrote:Anonymous : where is the code David 🙂 there's no hyperlink with the word here
IsFiltered =
IF(
SUMX('Slicer',
FIND(
'Slicer'[Departments],
MAX('Department Goals'[Affected Departments]),,0)) > 0,
"True",
"False"
)