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

Filter Without Related Values

Hi,

 

I have a calculated field that multiplies sumed values from 2 seperate tables. 

Calculated_Field= sum(TableA[Bookings])*sum(TableB[Decimal_Number]) = 15

 

I would like to take this calculated field, and put it inside a matrix where the row values are from a third table. None of these tables have related values that can be used to create a relationship. However, I want my calculated field (it's static at 15) to only display for  certian values in table C (as displayed below). Is there a way to do this.

 

TableC[Market]

 

Market                |  Calculated Field

__________________|__________________

North America    |      15

Europe                |        0

South America    |       15

Asia                     |       0

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

Yes, you could get it by the logic of this formula

Measure= IF( SELECTEDVALUE(TableC[Market])="North America", SUM(Calculated_Field),
             IF(SELECTEDVALUE(TableC[Market])="South America" , SUM(Calculated_Field),
               0)
           )

 

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

Yes, you could get it by the logic of this formula

Measure= IF( SELECTEDVALUE(TableC[Market])="North America", SUM(Calculated_Field),
             IF(SELECTEDVALUE(TableC[Market])="South America" , SUM(Calculated_Field),
               0)
           )

 

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.