Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Rio007
Helper I
Helper I

Marking data from previous week to be labelled carry over if they are still pending in current week

Thank 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.

 

Rio007_0-1651168905140.png

 

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.

1 REPLY 1
Anonymous
Not applicable

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 )
)

vpollymsft_0-1651472039793.png

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.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.