Forum Discussion
ryan_b_fiting
6 years agoPost Patron
IF statement with text wildcard
Hey community - I am looking to create a calculated column or measure based on finding a specific text within an entire text string column. Below is what I am trying to do (writing out/explaini...
- 6 years ago
Hi ryan_b_fiting ,
You may create column like DAX below.
PRIORITY GRADING = VAR _Find = SEARCH ( "Final Project", Table1[Name], 1, -1 ) RETURN IF ( _Find > 0, IF ( Table1[Days Since Submission] >= 3, "High", "Low" ), IF ( Table1[Days Since Submission] > 5, "High", "Low" ) )Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin
6 years agoSuper User
PRIORITY GRADING =
SWITCH (
TRUE (),
SEARCH ( NAME, "Final Project", 0 ) > 0, SWITCH (
TRUE (),
[Days Since Submission] >= 3, "High", "Low" ),
[Days Since Submission] > 5, "High", "Low"
)