Forum Discussion
Static Data alongside Live Data
- 9 months ago
Your baseline table is frozen, so it will never create new rows, in order to see new items from Live (like 4 and 5), let the Live table drive the rows and just pull in Baseline values where they exist:
In Power Query, merge Live with Baseline on the GUID using a Left Outer join and expand the Baseline column.
Or in DAX, add a column in Live with:
Baseline_Value =
LOOKUPVALUE(Baseline[Baseline_Value], Baseline[GUID], Live[GUID])That way all Live rows show up, with blanks for Baseline when thereโs no match.
Did it work? ๐ A kudos would be appreciated
๐จ Mark it as a solution to help spread knowledge ๐ก
Your baseline table is frozen, so it will never create new rows, in order to see new items from Live (like 4 and 5), let the Live table drive the rows and just pull in Baseline values where they exist:
In Power Query, merge Live with Baseline on the GUID using a Left Outer join and expand the Baseline column.
Or in DAX, add a column in Live with:
Baseline_Value =
LOOKUPVALUE(Baseline[Baseline_Value], Baseline[GUID], Live[GUID])
That way all Live rows show up, with blanks for Baseline when thereโs no match.
Did it work? ๐ A kudos would be appreciated
๐จ Mark it as a solution to help spread knowledge ๐ก
- Michael_S_19849 months agoNew Member
Perfect, thank you so much.
- Michael_S_19849 months agoNew Member
I now get this error message upon publishing - I am unable to view these workings Online?