Forum Discussion
line chart with dates and missing data
As you can see, the granularity is per day and not aggregated... The visual is for a year.
- negi0073 years ago
Community Champion
ms92ita can you share your pbix file or sample data in table format which can be copied
- ms92ita3 years ago
Helper I
PBIX is a bit complex to export beacuase the the chart a little part of a bigger report and I do not know how to export data from a calculated table. Anyway, the structure of the source data for time line is this:
X axis is date, while Items and TotalItems are line values
Another example is from FirstDate and LastDate as y-axis:- v-jingzhang3 years ago
Community Support
Hi ms92ita
Please create the following measures for Items and TotalItems. They will return 0 for blank values. Use these measures for line values to replace the original columns.
M_Items = SUM ( 'TableName'[Items] ) + 0M_TotalItems = SUM ( 'TableName'[TotalItems] ) + 0Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.