Forum Discussion
XaviOV
Helper V
6 years agoFilter text 2 columns
Hi! I have a table with differents columns. I want to filter by data of column "Pregunta", for example "Fundidores" or "Filtro Emulgente", and with theese filter I want to save the data of the r...
- 6 years ago
XaviOV OK, the code I provided earlier seems like it is doing exactly what you are asking or else I am missing something. See attached PBIX file.
- 6 years ago
FilterColumn = VAR _id = SUMMARIZE ( FILTER ( 'Table', 'Table'[Pregunta] IN { "Fundidores", "Filtro Emulgente" } ), 'Table'[ID] ) VAR _result = IF ( 'Table'[ID] IN _id , "Show", "Hide" ) RETURN _resultThis should work.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
nandukrishnavs
Community Champion
6 years ago
Could you try this
FilterColumn =
VAR _id =
SUMMARIZE (
FILTER ( 'Table', 'Table'[Pregunta] IN { "Fundidores", "Filtro Emulgente" } ),
'Table'[ID]
)
VAR _result =
IF ( 'Table'[ID] IN _id , "Show", "Hide" )
RETURN
_result
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
XaviOV
Helper V
6 years agoHi nandukrishnavs
When I'm doing you formula, under the formula appear this message
"A table of multiple values was supplied where a single value was expected."
Regards,
Xavi
- nandukrishnavs6 years ago
Community Champion
- nandukrishnavs6 years ago
Community Champion
FilterColumn = VAR _id = SUMMARIZE ( FILTER ( 'Table', 'Table'[Pregunta] IN { "Fundidores", "Filtro Emulgente" } ), 'Table'[ID] ) VAR _result = IF ( 'Table'[ID] IN _id , "Show", "Hide" ) RETURN _resultThis should work.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂