Forum Discussion
Anonymous
3 years agoNot applicable
How to return value from a column based on sprcific value from another column, otherwise shows blank
Hi. In my table, I have 2 column which is "Name" and "Task Detail". I want to create a new column which will show the name of employee who put "Task Detail" as Off. If not Off, the value will be bl...
- 3 years ago
Hi Anonymous
You can try below
Click on new column and use this expression
Column = IF(tbl_TableName[Task Detail]="Off",tbl_TableName[Name]," ")Let me know if this helps !
ryan_mayu
3 years agoSuper User
could you pls provide the sample data and expected output?