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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
angel51496
Frequent Visitor

Connect the Gaps

I have a graph in power bi that I can't get these lines to connect. I have created the date table but the line graph still doesn't connect. Essentially I would like to connect the last value that was entered, to be a plateau until the new value. Any advice would be great! These values are based on sourcekeys and obviously the latest adjustment on the value for that date.

 

angel51496_1-1755809384599.png

 

 

angel51496_0-1755809337601.png

 

1 ACCEPTED SOLUTION
v-sdhruv
Community Support
Community Support

Hi @angel51496 ,

Just wanted to check if you were able to  resolve your query? 

You can refer a similar post here-
Solved: Joining lines in line chart - Microsoft Fabric Community
Solved: Line Chart appears non-continuous - Microsoft Fabric Community

Hope this helps!

View solution in original post

13 REPLIES 13
v-sdhruv
Community Support
Community Support

Hi @angel51496 ,
Since we didnt hear back, we would be closing this thread.
If you need any assistance, feel free to reach out by creating a new post.

Thank you for using Microsoft Community Forum

v-sdhruv
Community Support
Community Support

Hi @angel51496 ,
Just wanted to check if you got a chance to review the suggestions provided and whether that helped you resolve your query?

Thank You

v-sdhruv
Community Support
Community Support

Hi @angel51496 ,

Just wanted to check if you were able to  resolve your query? 

You can refer a similar post here-
Solved: Joining lines in line chart - Microsoft Fabric Community
Solved: Line Chart appears non-continuous - Microsoft Fabric Community

Hope this helps!

Greg_Deckler
Community Champion
Community Champion

@angel51496 It's asking me to sign in.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler I had to upload it onto onedrive to put a link here. Can you not access that? Otherwise how would I share the file?

No, it is asking me to sign in to like your Azure AD (Entra ID) domain. Custom login screen with logos and stuff. 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Ashish_Mathur
Super User
Super User

Hi,

Share the download link of the PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

PBIHelp.pbix

My apologies for the delay @Ashish_Mathur! It didn't notify me that you replied! Appreciate any and all help 🙂

That takes me to a sign-in page.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

@Ashish_Mathur I had to upload it onto onedrive to put a link here. Can you not access that? Otherwise how would I share the file?

I cannot access that link.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Greg_Deckler
Community Champion
Community Champion

@angel51496 You can potentially adjust your measure as follows:

New measure = 
  VAR __Value = [Old Measure]
  VAR __Result = 
    IF(
      __Value <> BLANK(),
      __Value,
        VAR __Year = MAX( 'Dates'[Year] )
        VAR __Month = MAX( 'Dates'[Month )
        VAR __Day = MAX( 'Dates'[Day] )
        VAR __Date = 
          MAXX( 
            FILTER( 
              ADDCOLUMNS( 
                FILTER( ALL( 'Dates' ), [Year] = __Year && [Month] = __Month && [Day] < __Day )
                "__Measure", [Old Measure]
              ),
              [__Measure] <> BLANK()
            ),
            [Date]
          )
        VAR __Result = MAXX( FILTER( __Table, [Date] = __Date ), [__Measure] )
      RETURN
        __Result
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler didn't have luck with that. Here is a link to a copy of the report with mock data if that helps!

PBIHelp.pbix

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.