Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
My graph used to forecast fine, but now, after updating the dataset, I have the following error: "to forecast, data cannot have empty values". I'm not sure how to approach this one. I would like to forecast up to 2026, but it seems I have an empty field (see image below). The Y axis is coming from a measure, the code is shown below. The X axis is a calendar that was generated from 2021 to 2026. Any help would be super appreciated! Thanks
Remaining Tokens02 =
VAR __StartingTokens = 375802
VAR __MaxDate = MAX('Date Table'[StartDate])
RETURN
__StartingTokens -
CALCULATE(
SUM(Token2021[Credits]),
'Date Table'[StartDate] <= __MaxDate,
ALL(Token2021[StartDate])
)
I want the forecast back (was very nice!)
I this this empty field is the culprit
Hi @jfn ,
I think this may be caused by relationship between tables, try to modify the formula like this:
Remaining Tokens02 =
VAR __StartingTokens = 375802
VAR __MaxDate =
MAX ( 'Date Table'[StartDate] )
RETURN
IF (
MAX ( [StartDate] ) <> BLANK (),
__StartingTokens
- CALCULATE (
SUM ( Token2021[Credits] ),
'Date Table'[StartDate] <= __MaxDate,
ALL ( Token2021[StartDate] )
)
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
With this formulae, I still have an empty row (pic below)... Not sure if this is related, but here's how I generated the dates (for reference).
Date Table = CALENDAR(DATE(2021,01,01),TODAY())
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |