Forum Discussion
ania_roh
Helper III
3 years agoproblem with Dax measure
Hello, I need some help in building my measure because I can´t find a way. I would be very grateful if you could help me. So, I have three columns (in the same table): column of localization_desti...
Mahesh0016
Super User
3 years agoY =
SUMX (
FILTER (
localizationTable,
localizationTable[localizacion_destino] = 1111
&& localizationTable[localización_destino_original] = 1111
),
localizationTable[value]
)
****************************************************************************************
_Y =
SUMX (
FILTER (
localizationTable,
localizationTable[localizacion_destino] = 1111
),
localizationTable[value]
)
ania_roh If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.
ania_roh
Helper III
3 years agoYes Mahesh0016 but I want to have it for all rows of that visualizations.
Not only for 1111 (I put it to give an example).