Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Cumulative chart showing blanks (gaps in data)

Hi,

 

I am trying to create a Cumulative chart in Power BI, but the line breaks instead of continuing when there is no data. I have created a measure to count the number of dates I need:

No. Of Meetings = 
CALCULATE (
    COUNT ( account[Met Management Date] ), DATESYTD ( 'DateDimension'[Date] ),  ALL ( 'DateDimension' ) )

This works:

eg tab.JPG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

However the Chart looks like this:

eg.JPG

 

 

 

 

 

 

 

 

 

 

 

I don't necessarily need to use the YTD function as I'm more than happy to simply use a page filter to keep the date at 2017, I just need to fix this! I have read lots of articles on this too! The meeting column in linked directly to the primary key column (date) in the date table. Nothing seems to work, so what am I missing?!!!!

 

Can anybody help?!

Thanks!

Status: Needs Info
Comments
harleyD
Frequent Visitor

OK IM STUCK! Can any one please help? @Vicky_Song@v-haibl-msft ??

 

Im using this measure: 

 

Meetings Cumulative = 
CALCULATE(
    COUNTA ( 'NewMeetings'[Met Management Date] ),
FILTER(
ALL (DateDimension),
'DateDimension'[Date] <= MAX('DateDimension'[Date])
))

This gives:

 

eg8.JPG

 

which is great! because the cumulative chart also looks good. however, when i put in a legend for a field called group - this happens:

 

 

eg9.JPG

 

The gaps in the data effect my chart!

Can anyone tell me how i fix this? Please?!