Forum Discussion
Anonymous
5 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.
- 5 years ago
You could use just that column instead of the whole table then.
WorkerName = FILTER ( VALUES ( Worker[WorkerName] ), Worker[WorkerName] = "Once Off" )
AlexisOlson
Super User
5 years agoFILTER returns a table whereas Power BI is expecting a single scalar value. What are you trying to return instead of a table?
- Anonymous5 years agoNot applicable
Just a field name Worker[WorkerName] = "Once Off"
- AlexisOlson5 years ago
Super User
You could use just that column instead of the whole table then.
WorkerName = FILTER ( VALUES ( Worker[WorkerName] ), Worker[WorkerName] = "Once Off" )- Anonymous5 years agoNot applicable
Great bro. It's working perfectly.
Thanks a alot.