Forum Discussion
Anonymous
5 years agoNot applicable
Column that marks questions
Hello, I am trying to create a column that marks questions: Query Question? Which city Yes Town No What county Yes City No When was this city founded Yes ...
- 5 years ago
Anonymous
You can also use the SEARCH function in a column not measure
Column = IF ( SEARCH ( "What", Sheet1[Query], 1, 0 ), "Yes", IF ( SEARCH ( "Which", Sheet1[Query], 1, 0 ), "Yes", IF ( SEARCH ( "When", Sheet1[Query], 1, 0 ), "Yes", "No" ) ) )
themistoklis
Community Champion
5 years agoAnonymous
You can also use the SEARCH function in a column not measure
Column =
IF (
SEARCH ( "What", Sheet1[Query], 1, 0 ),
"Yes",
IF (
SEARCH ( "Which", Sheet1[Query], 1, 0 ),
"Yes",
IF ( SEARCH ( "When", Sheet1[Query], 1, 0 ), "Yes", "No" )
)
)
- Anonymous5 years agoNot applicable
This worked, thanks a lot!