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.
Team,
I have two SharePoint lists. One is with Project details and another with weekly progress for each project. The Project table has Project name and Benefits. The Progress table has Project(Lookup from column from Projects table), Date, and Weekly Progress. In Progress Table, there are multiple rows for weekly progress for each project with the date.
I would like to merge the tables and show the fields below in a table visual in PowerBI.
Please help me to achieve the result in PowerBI
Regards,
Alwin
Solved! Go to Solution.
Hi @allwynbazil
If both tables have Project column, you can build a relationship between them on Project column, then bring columns from corresponding tables into the table visual.
For the weekly progress, you can create the following measure
Latest Progress =
VAR _lastDate = MAX ( 'ProgressTable'[Date] )
RETURN
CALCULATE (
MAX ( 'ProgressTable'[Progress] ),
'ProgressTable'[Date] = _lastDate
)
Hope this helps.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @allwynbazil
If both tables have Project column, you can build a relationship between them on Project column, then bring columns from corresponding tables into the table visual.
For the weekly progress, you can create the following measure
Latest Progress =
VAR _lastDate = MAX ( 'ProgressTable'[Date] )
RETURN
CALCULATE (
MAX ( 'ProgressTable'[Progress] ),
'ProgressTable'[Date] = _lastDate
)
Hope this helps.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Thanks for looking into the issue @v-jingzhang. I fixed this issue using Bookmarks and Selection Options.
And I used the measure as you suggested to display the latest progress.
@allwynbazil , Have you tried Merge in Power Query
Merge: https://radacad.com/append-vs-merge-in-power-bi-and-power-query
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.