Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Dear Team,
we need help on the below query attached screenshot.
data table in the screenshot we have levels, and the current RCC date if my RCC at 10 then the next column shows RCC date.
FL is not started if blank
idle days are the calculation of Rcc at datediff(10-floor date, today, day)
Output needs in an attached screenshot
Solved! Go to Solution.
@sameergupta60 , You can have measures like
Maxx(filter(Table, Table[Project] = max(Table[Project]) && [Level] = "R10") , Table[Date]) , selectedvalue(Date[Date], today()) , day)
datediff(Maxx(filter(Table, Table[Project] = max(Table[Project]) && [Level] = "R10") , Table[Date]) , selectedvalue(Date[Date], today()) , Month)
@sameergupta60 , You can have measures like
Maxx(filter(Table, Table[Project] = max(Table[Project]) && [Level] = "R10") , Table[Date]) , selectedvalue(Date[Date], today()) , day)
datediff(Maxx(filter(Table, Table[Project] = max(Table[Project]) && [Level] = "R10") , Table[Date]) , selectedvalue(Date[Date], today()) , Month)