Forum Discussion
Anonymous
4 years agoNot applicable
calculated column
Good afternoon! Could someone guide me in here: there are 2 tables 1st table A has a column named P_type where one of the valus named "Maintenance&Support" is needed to be chosen as filter 2s...
v-jingzhang
4 years agoCommunity Support
Hi Anonymous
It's not clear. Can you provide some sample data and explain it in more details.
Do you have two table visuals in the report and want to click on one column "P_Type" in table A to filter the result in table B visual? If so, you need to use a measure rather than a calculated column. Put this measure into the second table visual.
New name =
IF (
SELECTEDVALUE ( 'table A'[P_Type] ) = "Maintenance & Support",
"No needed",
"other name"
)
If above measure doesn't work, please provide some sample data and expected result to help us understand it better.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.