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.
Hello, I want to ask questions about combining two table data that was pulled from the SQL server.
Two tables have same features but it has different period of time.
I want to combine two tables that meets intersecting time period.
For example, first data looks like this.
And Second Data looks like this.
I want to create a third table
It will be great to get a help how to do this in PowerBI.
Thank you!
Solved! Go to Solution.
@Anonymous ceate this caclulated table:
Table3 =
UNION(
FILTER(
Table1,
Table1[Date] IN VALUES(Table2[Date])
),
FILTER(
Table2,
Table2[Date] IN VALUES(Table1[Date])
)
)
@Anonymous ceate this caclulated table:
Table3 =
UNION(
FILTER(
Table1,
Table1[Date] IN VALUES(Table2[Date])
),
FILTER(
Table2,
Table2[Date] IN VALUES(Table1[Date])
)
)
It worked! Thank you very much!
@Anonymous my pleasure 🙂
Check out my showcase report - got some high level stuff there 🙂
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543
Give it a thumbs up over there if you liked it 🙂
Oh these are interesting reports! I will check it out. Thank you.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.