The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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)