Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助编写符合此条件的派生列表达式。
如果([职位名称] 是“埃森哲领导层”或“高级管理人员”)并且 [薪酬等级组] 不为空,那么 [薪酬等级组] ELSE [职位名称]。
谢谢,
尝试这个:([Name of Job] == "Accenture Leadership" ||[Name of Job] == "Senior Executive") && ISNULL([Pay scale Group]) == FALSE ? [Pay scale Group] : [Name of Job]
([Name of Job] == "Accenture Leadership" ||[Name of Job] == "Senior Executive") && ISNULL([Pay scale Group]) == FALSE ? [Pay scale Group] : [Name of Job]
参考