How to Search Enum Fields I have a table wit...

How to Search Enum Fields

I have a table with accomplishments which includes a skills field. The skills field references the skills table.

I made the skills field Enum type because I wanted to select all the skills that apply to the accomplishment entered. (1 Accomplishment can demonstrate many skills and 1 skill is found in many accomplishments)

My question is, If I want to run a search based on a skill and have it returns all the matching accomplishments with that skill, How would this work since multiple skills are saved in one cell instead of separate records?

0 1 351
1 REPLY 1

Hi +Tyson Carmichael,

For slice filter etc, the expression can be

IN(โ€œSkill Nameโ€,[Skill]) where โ€œSkillNameโ€ is the name of the skill in the skills list field called [Skill] , for which you wish to select the corresponding rows of accomplishments.

For coming up with a list of all all accomplishments for a particular skill,the expression can be as follows

SELECT(Accomplishment Table[Accomplishment],IN(โ€œSkill Nameโ€,[Skill]))

Top Labels in this Space