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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
strikw
Helper I
Helper I

Formula with conditional

Hello,

I need to filter this formula:
.Media = SUM (Tips [Odd]) / COUNT (Tips [Odd]) //Current formula

 

I need to filter only if it is greater than or equal to 4 (Tips [Odd])

 

I do not know how to make this condition, if anyone can help me.

 

Thank you.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @strikw,

 

Try with this:

NewMeasure =
CALCULATE ( [Media]; Tips[Odd] > 4 )

Or in the same measure:

Media =
CALCULATE ( SUM ( Tips[Odd] ) / COUNT ( Tips[Odd] ); Tips[Odd] > 4 )


Regards.

Note: If you get a syntax error it's probably because of the semicolons instead of commas, Power BI has the two options to delimit DAX, change semicolons by commas and it should work.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

Hi @srikw
Try this:CALCULATE([Media], filter(Tips [Odd])>=4)
Alternatively, you can use the same measure and just filter it through visual filter from the filters pane.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Hi @strikw,

 

Try with this:

NewMeasure =
CALCULATE ( [Media]; Tips[Odd] > 4 )

Or in the same measure:

Media =
CALCULATE ( SUM ( Tips[Odd] ) / COUNT ( Tips[Odd] ); Tips[Odd] > 4 )


Regards.

Note: If you get a syntax error it's probably because of the semicolons instead of commas, Power BI has the two options to delimit DAX, change semicolons by commas and it should work.

Thank you very much, it worked well.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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