Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Related column and conditional column

hi all... I have a column value using related. for example, how do i create a column, if country has Asia, then "Asia" else "others"   I am not able to use conditional column? Any advice is grate...
  • az38's avatar
    az38
    6 years ago

    Anonymous 

    try

    SWITCH(
    TRUE(),
    CONTAINSSTRING(Table[Country],"AsiaPac")=TRUE(), "AsiaPac",
    CONTAINSSTRING(Table[Country],"Asia")=TRUE(), "Asia",
    "Others"
    )

    do not hesitate to give a kudo to useful posts and mark solutions as solution