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
lulumedina
Frequent Visitor

Filtering data from Google Analytics depending on results from two tables

Hello! 

I want to filter data depending on whether is having results or not on other different two tables.

for example, I have three columns: Goal Completions, Goal 1 Completions, Goal 7 Completions

 

I want to show only the sum of Goal 1 and Goal 7 Completions on the total of Goal Completions, like I don't want to show the numbers from Goal Completions if Goal 1 and Goal 7 have 0 (please see image attached) I just want to show the total if Goal 1 and Goal 7 have numbers.

Screenshot 2020-11-17 123647.png

 

Is there a way to achieve this?

 

Thank you in advance!

2 ACCEPTED SOLUTIONS
Fowmy
Super User
Super User

@lulumedina 

Use the following measure to calculate the total:

Total = 
SUMX(
    table,
    IF( table[goal 1 completions]> 0 && table[goal 7 completions]> 0 ,  table[goal completions] )
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

v-lionel-msft
Community Support
Community Support

Hi @lulumedina ,

 

Try this.

 

Measure = 
VAR __sum = MAX([goal 1 completions]) + MAX(goal 7 completions)
RETURN
IF(
   __sum > 0,
   __sum, blank()
)

 

 

Best regards,
Lionel Chen

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

3 REPLIES 3
lulumedina
Frequent Visitor

Hi Fowmy and v-lionel-msft, 

 

Thank you for the help, I did the sum of the two tables and I think that worked well, 

I'm going to try your alternatives.

 

Thank you very much for your help.

v-lionel-msft
Community Support
Community Support

Hi @lulumedina ,

 

Try this.

 

Measure = 
VAR __sum = MAX([goal 1 completions]) + MAX(goal 7 completions)
RETURN
IF(
   __sum > 0,
   __sum, blank()
)

 

 

Best regards,
Lionel Chen

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

Fowmy
Super User
Super User

@lulumedina 

Use the following measure to calculate the total:

Total = 
SUMX(
    table,
    IF( table[goal 1 completions]> 0 && table[goal 7 completions]> 0 ,  table[goal completions] )
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

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.