Forum Discussion
Anonymous
7 years agoNot applicable
Cumulative backlog
Dear all,
I have create this measure and it's doesn't work :
Backlog = CALCULATE([Balance];FILTER(all('Date');'Date'[Date]<=MAX('Date'[Date])))
Result =
Ps : Balance measure = Created(backlog) - Resolved(backlog)
Can you help me please ?
- Anonymous7 years ago
Thanks for your answer but I already resolve the issue. It was link to the data type of my date columns, I had just to change data types in Power BI Query !
4 Replies
- parry2kSuper User
Anonymous based on info you provided, in yur table if you use [date] from date table instead of [creation week] from your tran table, it will work.
- AnonymousNot applicable
No, it's doesn't work :
Created (backlog) = COUNTA(export_incident[Opened])Resolved (backlog) = CALCULATE(COUNTA(export_incident[Resolved]);USERELATIONSHIP('Date'[Date];export_incident[Resolved]))Balance = [Created (backlog)]-[Resolved (backlog)]My model :
- v-frfei-msftCommunity Support
Hi Anonymous ,
Please try to use the formula as below. If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
Backlog = SUMX(FILTER(all('Date');'Date'[Date]<=MAX('Date'[Date]));[Balance])- AnonymousNot applicable
Thanks for your answer but I already resolve the issue. It was link to the data type of my date columns, I had just to change data types in Power BI Query !