Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi,
I am trying to forecast growth of DB size by dates in a Line Chart. But i get an error saying the timeline is not consistent. Is there a solution to this?
Solved! Go to Solution.
Hi Ritaf1983 ,thanks for the quick reply, I'll add more.
Hi @Shravan133 ,
Regarding your problem, I think the problem occurs because the date column in your original data is not continuous.The forecast function requires consecutive dates.
You need to create a date table containing consecutive dates and merge the data from your original data table into it.
Table 2 =
ADDCOLUMNS(CALENDAR(DATE(2024,1,1),DATE(2024,12,31)),"value",
VAR _result = SUMX(FILTER('Table',[Date] = EARLIER([Date])),[Value]) RETURN IF( ISBLANK(_result),0,_result))
Best Regards,
Wenbin Zhou
Hi Ritaf1983 ,thanks for the quick reply, I'll add more.
Hi @Shravan133 ,
Regarding your problem, I think the problem occurs because the date column in your original data is not continuous.The forecast function requires consecutive dates.
You need to create a date table containing consecutive dates and merge the data from your original data table into it.
Table 2 =
ADDCOLUMNS(CALENDAR(DATE(2024,1,1),DATE(2024,12,31)),"value",
VAR _result = SUMX(FILTER('Table',[Date] = EARLIER([Date])),[Value]) RETURN IF( ISBLANK(_result),0,_result))
Best Regards,
Wenbin Zhou
Hi @Shravan133
Based on the image you’ve shared, it looks like the line chart is displaying some unexpected patterns. The zigzag pattern and sharp drops or spikes in the data suggest there might be some issues related to the data itself.
Erratic Pattern: The chart shows a zigzag pattern, which could indicate that the data includes sudden increases or decreases. This may be due to anomalies or irregularities in the data.
Negative Growth Values: There are negative values in the chart, which could suggest that the calculation of growth sometimes results in negative numbers. This might happen due to data entry issues, unexpected data points, or an actual decrease in the database size.
Review the Data for Anomalies:
Consider a Cumulative Sum:
Data Smoothing Techniques:
Investigate Outliers:
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 29 | |
| 27 | |
| 25 |