Forum Discussion
Getting max date from date filter using DAX measure but ignoring in matrix calculated column
- 1 year ago
Moushmi , You need build balances using cumulative method. If the day is driver then you can have like
BOP= CALCULATE(SUM(Table[IN]),filter(all(date),date[date] <min(date[date]))) -
CALCULATE(SUM(Table[OUT]),filter(all(date),date[date] <min(date[date])))same way I can use Year of FY (Numeric)
BOP= CALCULATE(SUM(Table[IN]),filter(all(date),date[Year] <min(date[Year]))) -
CALCULATE(SUM(Table[OUT]),filter(all(date),date[Year] <min(date[Year])))Same way End of period is
EOP= CALCULATE(SUM(Table[In]),filter(all(date),date[date] <=Max(date[date]))) -
CALCULATE(SUM(Table[Out]),filter(all(date),date[date] <= Max(date[date])))
Hi Moushmi ,
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you.
Thank you.
Hi Moushmi ,
Can you please confirm whether the issue got resolved. If solved can you you please share your solution here,so that other community members can find it easily.
Thank you.