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.
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 |
---|---|
85 | |
84 | |
36 | |
34 | |
32 |
User | Count |
---|---|
93 | |
79 | |
66 | |
55 | |
52 |