Forum Discussion
Naqash27
7 years agoRegular Visitor
Opening Balance for Help Desk Tickets
Hi, I have 2 tables: Help Desk List (the main table containing all fact data) Date Table (the date table which i made relationshi with my 1st table Created column) I want the Opening Balance...
Anonymous
7 years agoNot applicable
Hi Naqash27 ,
You still not share any detail calculation logic about your formulas, please explain then more clearly.
In addition, you can also try to use following measure formulas if they suitable for your requirement:
Open balance =
CALCULATE (
COUNT ( Table[Ticket ID] ),
FILTER (
ALL ( Table ),
[Close Date] < MAX ( Date[Date] )
|| [Close Date] = BLANK ()
)
)
Closed balance =
CALCULATE (
COUNT ( Table[Ticket ID] ),
FILTER ( ALL ( Table ), [Close Date] >= MAX ( Date[Date] ) )
)
Ticket Created =
CALCULATE (
COUNT ( Table[Ticket ID] ),
FILTER ( ALLSELECTED ( Table ), [Created Date] IN ALLSELECTED ( Date[Date] ) )
)
Closed Ticket =
CALCULATE (
COUNT ( Table[Ticket ID] ),
FILTER ( ALLSELECTED ( Table ), [Close Date] IN ALLSELECTED ( Date[Date] ) )
)
Regards,
Xiaoxin Sheng
Naqash27
7 years agoRegular Visitor
It still did not work. The opening balance is not getting me the required results. Please clarify one thing, is Date[date] the Created date of the ticket or Date table?