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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have the following data:
Created Date
Invoiced Date
Region
I want to chart out somethng like
---------------------------------------created date
---------------------------------------Invoice Date
Region
In a line chart. Can this be done?
Cant figure out how to bring in the data
The lines will fluctuate depending on days between invoice date and created date.
Solved! Go to Solution.
@Rocky_Brown , With a common date table, You can create measures that work on create date and Invoice date. Use userelationship for inactive dates
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi @Rocky_Brown
You can calculate the diff between two dates .
Region = DATEDIFF(SELECTEDVALUE('Table'[Created Date]),SELECTEDVALUE('Table'[Invoiced Date]),DAY)
Then add a line chart , use [name] as Axis ,[region] as value .
The effect is as shown:
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Rocky_Brown
You can calculate the diff between two dates .
Region = DATEDIFF(SELECTEDVALUE('Table'[Created Date]),SELECTEDVALUE('Table'[Invoiced Date]),DAY)
Then add a line chart , use [name] as Axis ,[region] as value .
The effect is as shown:
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Rocky_Brown , With a common date table, You can create measures that work on create date and Invoice date. Use userelationship for inactive dates
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.