Forum Discussion
Anonymous
5 years agoNot applicable
Searching column for values < 2000
Hi, I am having trouble creating a calculated column, where I search another column for values < 2000. IF < 2000, then it shall return "Home" and IF > 2000, then "Out". I have tried somet...
- 5 years ago
Hi Anonymous ,
I test the data your provided ,run successful(see the below).
Cannot convert value '' of type Text to type Number: It might be because one of the rows contain blank value or non numberic value. In query editor, try filtering each column for a non numeric value.
The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value:refer :
Wish it is helpful for you!
Best Regards
Lucien
amitchandak
Super User
5 years agoAnonymous , In case you want to create a new column
_Out_Home =
IF('DM_Employee'[PersiumOrgID] < 2000, "Home", "Out")