Forum Discussion
rgpsathish
3 years agoFrequent Visitor
Power BI Backlog issue DAX
Hi Experts, i created the Open Task report Visualization, in this report we can see the Created, closed and backlog Task. i have one concern backlog showing more than today date as well. i dont w...
- Anonymous3 years ago
Hi rgpsathish ,
Please try:Backlog = IF(MAX('Dates'[Date])<=TODAY(),CALCULATE([Balance],FILTER(ALL('Dates'),'Dates'[Date]<=max('Dates'[Date]))))There will be no blank values on the 1 side of a valid relationship.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
rgpsathish
3 years agoFrequent Visitor
Thanks Anonymous