Forum Discussion
PVO3
5 years agoImpactful Individual
Order of FILTER function
Good day, I'm looking for some DAX help. Edit: added sample My model looks like: Customer *→1 Bridge 1←* Actions Product *→1 So note the facts (actions) are connected...
- 5 years ago
Please try:
Filter combination = VAR _filter1 = [Filter 1] var _filter2 = [Filter 2] return IF(ISBLANK(_filter2),_filter1,_filter2)
PVO3
5 years agoImpactful Individual
Nobody? Hoping this was an easy fix because I overlooked something.
V-lianl-msft
5 years agoCommunity Support
Please try:
Filter combination =
VAR _filter1 = [Filter 1]
var _filter2 = [Filter 2]
return IF(ISBLANK(_filter2),_filter1,_filter2)
- PVO35 years agoImpactful Individual
Great, thanks a lot! Just the addition of the IF(ISBLANK, will end my sleepless nights.
Such a simple solution which makes me feel stupid 😀