Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all,
I'm new using Power BI and i have difficult to create a plot with "concatenate" data on the same plot from differents tables.
To be quick, i have differents table (3 for exemple) and i want to plot datas one after the others as below on Excel.
In Data 1/2 & 3 i have for exemple "Temperature" depending on time, all start from "0sec". So i need to create another "time data" to concatenate and offset data correctly depending on a "global time".
But, i don't know how to do that on Power BI knowing that i received datas on 3 differents tables.
Have you an idea how i could do that please ?
Thanks a lot for your help.
PS : Sorry if it's not really clear..
Solved! Go to Solution.
Hi @LucasP ,
Sorry, the link you gave cannot be opened.
I suggest you to combine the three tables into one table.
NewTable = UNION('Table1','Table2','Table3')
Type = SWITCH(
TRUE(),
'NewTable'[ID] = 1 || 'NewTable'[ID] =2 || 'NewTable'[ID] =3, "Data1",
'NewTable'[ID] = 4 || 'NewTable'[ID] =5 || 'NewTable'[ID] =6, "Data2",
'NewTable'[ID] = 7 || 'NewTable'[ID] =8, "Data3")
The result you want:
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @LucasP ,
Sorry, the link you gave cannot be opened.
I suggest you to combine the three tables into one table.
NewTable = UNION('Table1','Table2','Table3')
Type = SWITCH(
TRUE(),
'NewTable'[ID] = 1 || 'NewTable'[ID] =2 || 'NewTable'[ID] =3, "Data1",
'NewTable'[ID] = 4 || 'NewTable'[ID] =5 || 'NewTable'[ID] =6, "Data2",
'NewTable'[ID] = 7 || 'NewTable'[ID] =8, "Data3")
The result you want:
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please share sample non-confidential data or a link to a sanitized PBIX file
Proud to be a Super User!
Paul on Linkedin.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 18 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |