Forum Discussion
Tricky: Filter measure from different datasets
Hi Quentin
You can create a Calculated table to put these Measures into one table.
Table =
var t1=ROW("source dataset","item sales","item total",[item total])
var t2=ROW("source dataset","store sale amount","amount total",[amount total])
return UNION(t1,t2)
The result looks like this:
Here is the pbix.
Best Regards,
CaiyunnZhengg
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello CaiyunnZhengg and thanks for your support
This is brillant and we are getting closer!
However it doesn't fully answer my need as the problem i always have with calculated tables is that they do not respond to filters as they are calculated before being used as input in visuals
Therefore with this technique the calculated table takes the measure [item total] without it to be filtered
If trying to use the Calculate function to filter the result of the measure before getting it into the calculated table:
I recieve the following error i don't understand...
La columna "CONTRACT_EXTENSION"[Analysis Date.Year] no se puede insertar en el origen de datos remoto y no se puede usar en este escenario.
Which can be translated as the column cannot be inserted in the remote origin of data and cannot be used in this context...
Looking forward if you have any other tips this first one was brillant
Cheers,