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...