Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
38 | |
31 | |
26 |
User | Count |
---|---|
97 | |
87 | |
43 | |
40 | |
35 |