Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThank You in advance for Your help. Please see pics. I'm trying to counts item from previous week, which are still pending in the current week as carry over. as seen in the pic Apr13 as nothing pending, then I should not get any carry over for the following of april 2nd which april 9. but here I get some data(6) which is not correct.
Here the Dax formula I used
Carry Over =
VAR MaxDate = MAX (Week[Date] )
RETURN
CALCULATE( [Pending Tasks],
FILTER( ALL ( Week[Date] ) , Week[Date] = MaxDate - 7 )
).
Thank You very much for Your help.
Hi @Rio007 ,
Please refer to my pbix file to see if it helps you.
Modify the Dax formula you used.
Carry Over =
VAR MaxDate = MAX ('Table'[date])
RETURN
CALCULATE( [Measure],
FILTER( ALL ('Table'[date] ) ,'Table'[date] >= MaxDate - 7 )
)
If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
24 | |
15 | |
13 | |
12 | |
8 |
User | Count |
---|---|
30 | |
22 | |
15 | |
14 | |
14 |