So I have a column SUMMARY and a calculated column ISSUE. in the ISSUE column I have a DAX formula:
=IF(FIND("SSH",[Summary],1,BLANK()),"SSH",BLANK())
So each time it finds a string "SSH" in SUMMARY, it puts the string SSH in ISSUE. This works fine.
What I would like to be able to do is have it look for multiple strings and do the same thing. So if it finds XXX it puts XXX in ISSUE. If it finds YYY it puts YYY in ISSUE.
Pseudo would be (IF find "AAA" in SUMMARY then write "AAA" in ISSUE) OR (IF find "BBB" in SUMMARY then write "BBB" in ISSUE) OR (IF find "CCC" in SUMMARY then write "CCC" in ISSUE)
So in my calculated column I would have
AAA
AAA
BBB
AAA
CCC
And, of course, if none of them found, blanks.
Any help appreciated.
Jim
=IF(FIND("SSH",[Summary],1,BLANK()),"SSH",BLANK())
So each time it finds a string "SSH" in SUMMARY, it puts the string SSH in ISSUE. This works fine.
What I would like to be able to do is have it look for multiple strings and do the same thing. So if it finds XXX it puts XXX in ISSUE. If it finds YYY it puts YYY in ISSUE.
Pseudo would be (IF find "AAA" in SUMMARY then write "AAA" in ISSUE) OR (IF find "BBB" in SUMMARY then write "BBB" in ISSUE) OR (IF find "CCC" in SUMMARY then write "CCC" in ISSUE)
So in my calculated column I would have
AAA
AAA
BBB
AAA
CCC
And, of course, if none of them found, blanks.
Any help appreciated.
Jim