Forum Discussion
Filter data from other tables
- 5 years ago
Hi, carlochecchia
I am not sure how the below measure will influence your real case, but if your objective is to achieve the result that is shown in your picture, please try the below.
measurefix =
CALCULATE (
SUM ( Source[Weight] ),
CROSSFILTER ( Source[ID], Questions[ID], BOTH ),
CROSSFILTER ( Source[ID], Segment[ID], BOTH )
)Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
Thank you so much!
Could you also assist me on how to calculate the percentage of the column total?
Looking to achieve this result
Answer Female Male Total
blue 100% 33% 67%
Red -- 66% 33%
total 100% 100% 100%
Hi,
Please try the below.