Forum Discussion
kancs9128
2 years agoFrequent Visitor
Relationship between two different visuals (inside the same page).
Hi all; Need help. Currently, the visuals below is showing Sum of Inventories filtered by Mth End Close (Month End Close) & Corporate BU (Business Units). Mth End Close: months eg; Jul2023, Aug202...
Anonymous
2 years agoNot applicable
Hi kancs9128
Please try the following DAX:
Inventory =
IF(
ISFILTERED('Date'[Month End Close]) &&
SELECTEDVALUE('Date'[Month End Close]) = "ALL",
BLANK(),
SUM('Inventory'[Inventories])
)
This measure will check if the "Month End Close" filter is set to "ALL" and, if so, return blank; otherwise, it will sum the inventories.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
kancs9128
2 years agoFrequent Visitor
Hi - "Month End Close" filter is set to "ALL"
but then, when applying the formulae - still unable to get Blank ().