Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hej, for some reason the curve shows the same values for future months for which we have not yet entered data into the Excel. Even there are not even empty cells for this data
In the second picture I applied a filter with the value show less than the number of beneficiaries from the last report. but then Power Bi hides the data for the last month of the report. (I want to see 1,089,988 as last reported data)
I tried to combine data equal to or less than the value, but still with the latest current figures a straight line comes out for future months that I want to hide. Maybe, you know the answer to what to do to hide the direct line for future months? I don't want to see the strikt line with no walue yet. And keep just one month shows the last reported number ? I would be grateful, if you tell any suggestions.
@angelina_tr Why is your "VAR CurrentMonth" saving the maximum date instead of the current date?
Can you create a year to date column in your date table like I suggested, and use a ytd = 1 filter in your expression to sum values?
If you unpivoted the date columns, you should be able to create this calculated column within your table:
ytd_dates =
IF (
[Month] <= TODAY (),
1,
0
)
@angelina_tr This approach will display Sales, for example, only up until the year to date:
Create a ytd_dates column in your date table (or data table depending on your model):
Then create a YTD Sales measure (or Cumulative reach measure in your case):
YTD Sales =
CALCULATE (
TOTALYTD ( SUM ( Sheet1[Sales] ), Sheet1[Month], "12/31" ),
KEEPFILTERS ( Sheet1[ytd_dates] = 1 )
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |