Forum Discussion
Anonymous
6 years agoNot applicable
Filter/DAX Help
Hello,
I have a DAX that calculates all the inventory by the end of the month, but the way the DAX is set up prevents me from using a slicer. So i changed the DAX below from ALL to AllSELECT so that I can use the slicer, but then prior month inventory dax no longer pull correctly (Prior Month inventory = Calculate (End of the month inventory], PreviousMonth(Date'Date)).
Is there a way I can fix my below DAX or edited the previousmonth DAX, so that I can use my slicer and both the DAX will pull correctly? Thank you!
End of the month Inventory =
Var thisdate =
MIN(Query1[DT_Rec_EndMonth])
return
CALCULATE(SUM(Query1[Value]),ALL(Query1),Query1[DT_Rec_EndMonth]<=thisdate,
OR(Query1[Frozen_EndMonth]>thisdate,ISBLANK(Query1[Frozen_EndMonth])))
- Anonymous6 years ago
Sorry I figured it out. I was being dumb. Thank you lbendlin. Not sure how to delete this post though