hi all
i have two cumulative totals which encounter issues when the periodic value is '0' - they dont simply use the previous number add '0' they leave gaps in the data, as below -
the two formulas are -
Solved! Go to Solution.
@dantheram , the second(With modification) one should not show gap, if the calendar is marked as date table, having single directional join and the x-axis is using date from calender table
Try like
RT Targets =
CALCULATE (
SUM ('Derby SAF Targets'[Target Value]),
FILTER(
ALLSELECTED('Calendar'), 'Calendar'[Date] <= MAX('Calendar'[Date])))
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
Hi @dantheram ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@dantheram , the second(With modification) one should not show gap, if the calendar is marked as date table, having single directional join and the x-axis is using date from calender table
Try like
RT Targets =
CALCULATE (
SUM ('Derby SAF Targets'[Target Value]),
FILTER(
ALLSELECTED('Calendar'), 'Calendar'[Date] <= MAX('Calendar'[Date])))
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.