Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
hello evrybody
i have a tiketing system and im trying to calculate the "backlog" in the system/
i have a opend column ( date time ) and a resolved column (date time)
im looking to calculate the numer of cases that where open on a any date - the number of cases that was resolved before midnight that day.
any ideas ??
Solved! Go to Solution.
Hi @TomBrown
Duplicate opened column and late format this column to date only
opened date = table[opend column]
Add another column
resolved same day =
IF(
INT( 'Table'[date] ) = INT( 'Table'[resolved column] ),
"Yes",
"No"
)
Add measure
Measure = COUNTROWS( 'Table' )
Add all to a table visual
Hi @TomBrown
Duplicate opened column and late format this column to date only
opened date = table[opend column]
Add another column
resolved same day =
IF(
INT( 'Table'[date] ) = INT( 'Table'[resolved column] ),
"Yes",
"No"
)
Add measure
Measure = COUNTROWS( 'Table' )
Add all to a table visual
Refer, if this can help : https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/td-p/409364
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.