Forum Discussion
MariaCL
2 years agoRegular Visitor
Filtros entre tablas
Hola! Necesito ayuda para saber si es posible hacer lo siguiente con alguna medida DAX. Tengo una tabla de datos con ID de posiciones y datos sobre esas posicione por ejemplo su ubicación. Por otro...
rubayatyasmin
Community Champion
2 years agoMariaCL Hi
There should be a relationship between the data table and the endowment table based on the position ID.
Then create a measure
Location Match =
VAR SelectedLocation = SELECTEDVALUE(DataTable[Location])
RETURN
CALCULATE (
COUNTROWS(EndowmentTable),
FILTER(
EndowmentTable,
RELATED(DataTable[Location]) = SelectedLocation
)
)