Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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
| User | Count |
|---|---|
| 76 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |