Forum Discussion
Merging two SharePoint lists in PowerBI
- 3 years ago
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.