Forum Discussion
Anonymous
6 years agoNot applicable
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...
- 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
az38
6 years agoCommunity Champion
Hi Anonymous
it should be enough:
Country = IF(FIND("Asia"),RELATED(CountryCode[Country])) > 0, "Asia", "Others")do not hesitate to give a kudo to useful posts and mark solutions as solution