Forum Discussion
HugoTran
2 years agoFrequent Visitor
Filter Power BI Dax based on condition
Hi All -
I am trying to filter a table base on the following condition (Status=New, SME group is not populated (blank)) but it came back with error " A single value for column [] in table [] can not be determined. This can happen when a measure formula rfers to column that contain many values without specifying aggreation..." I am new with this and any help are greatly appreciated. Thank you in advance!
Hi, HugoTran
filtercondition =
If( min(tablename[status])="new" || min(tablename[sme group assigned])<>blank(),"filter","not filter")
12 Replies
- AnonymousNot applicable
HugoTran You'll need to use an aggregation function in those cases (like MAX), or you can try using the FIRSTNONBLANK function with your example.