Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not 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

2st table B has a column named Gate where value is needed to be added as name "no needed"

 

"If P_Type (table A) = Maintenance & Support (table a)-> It will show new name “not needed”( table B,column Gate)"powerbi pic ....PNG

2 REPLIES 2
v-jingzhang
Community Support
Community 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.

lbendlin
Super User
Super User

Please provide sanitized sample data that fully covers your issue. If you paste the data into a table in your post or use one of the file services it will be easier to work with. Avoid posting screenshots of your source data if possible.

Please show the expected outcome based on the sample data you provided. Screenshots of the expected outcome are ok.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors