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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have two tables
Table 1
Date Line
01/01/2019 line 1
01/01/2019 line 2
01/01/2019 line 1
01/01/2019 line 3
01/01/2019 line 5
01/01/2019 line 1Table 2
Date Line Nbr Trafic
01/01/2019 line 1 50
01/01/2019 line 2 2
01/01/2019 line 3 10
01/01/2019 line 4 5
01/01/2019 line 5 1
and I would like to have a table 3 with line table 1 / nbr trafic table 2
Table 3
Date Ligne Re
01/01/2019 line 1 0,06
01/01/2019 line 2 0,5
01/01/2019 line 3 0,10
.......
.
.
Table 1 and Table 2 are jointed by Line
Can you help me please?
Solved! Go to Solution.
@firstligth62 add a new measure with following expression
Re = DIVIDE( COUNTROWS( Table1 ), SUM( Table2[Nbr Traffice ) )
Add a table visual and put Date, Line and Re from Table2
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
If you need as a new table. Please create the dulipcate of table 1 and merge the table 2 with duplicate table. Expand the columns and create the Calculate column as above it would work out.
Thanks,
Hemanth Thota.
@firstligth62 add a new measure with following expression
Re = DIVIDE( COUNTROWS( Table1 ), SUM( Table2[Nbr Traffice ) )
Add a table visual and put Date, Line and Re from Table2
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 105 | |
| 39 | |
| 35 | |
| 26 |