Hi @dkgs, You could combine several ifs, or better use case | eval country= case(atomName="APAC", "India", atomName="EUR","Netherlands") So, it's a condition and the result for that condition. another condition, another result. You can extend it with more conditions and results. case has no "else" value, so you either have to give all possible values, or you put the "else" / "default" value in an eval before the case statement. | eval country="United States"
| eval country=case(.....) So it would stay "United States" if none of the case conditions match. BR Ralph
... View more