Forum Discussion
Anonymous
4 years agoNot applicable
Filter error. The expression refers to multiple columns.
The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
- 4 years ago
You could use just that column instead of the whole table then.
WorkerName = FILTER ( VALUES ( Worker[WorkerName] ), Worker[WorkerName] = "Once Off" )
AlexisOlson
4 years agoSuper User
FILTER returns a table whereas Power BI is expecting a single scalar value. What are you trying to return instead of a table?
Anonymous
4 years agoNot applicable
Just a field name Worker[WorkerName] = "Once Off"
- AlexisOlson4 years agoSuper User
You could use just that column instead of the whole table then.
WorkerName = FILTER ( VALUES ( Worker[WorkerName] ), Worker[WorkerName] = "Once Off" )- Anonymous4 years agoNot applicable
Great bro. It's working perfectly.
Thanks a alot.