79224901

Date: 2024-11-25 23:54:00
Score: 0.5
Natty:
Report link

here is a workaround for you create two columns in each table

Column = "Table1"
Column = "Table2"

Then combine two tables

Table = UNION(Table1,Table2)

enter image description here

Then create two measures for price

price1 =
MAXX ( FILTER ( 'Table', 'Table'[Column] = "Table1" ), 'Table'[Price] )

price2 =
MAXX ( FILTER ( 'Table', 'Table'[Column] = "Table2" ), 'Table'[Price] )

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Ryan