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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Pbiuserr
Post Prodigy
Post Prodigy

Measure with criteria

Hello

I want to create a measure and calculated column (later I need to make groups of these) where

If value from the same line same table of Field1 Equals value from the same line same table of Field2 then
Divide (FieldX/FieldY) Else 0 

Would it be like CALCULATE (IF (Table1[Field1] = Table1[Field2], DIVIDE (Table1[FieldX], Table1[FieldY]), 0 ) ?

 

The point is to exclude calculation in a column and measure when there is no meet criteria Table1[Field1] = Table1[Field2]

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Pbiuserr ,

I created some data:

Table1:

vyangliumsft_0-1662448099927.png

Table2:

vyangliumsft_1-1662448099928.png

Here are the steps you can follow:

1. Add Index to Table1 and Table2 in Power Query.

In Power query. Add Column – Index Column – From 1.

vyangliumsft_2-1662448099930.png

2. Create measure.

Measure_Table2 =
MAXX(FILTER(ALL(Table1),'Table1'[Index]=MAX('Table2'[Index])),[Field1])
Measure with criteria =
IF(
    MAX('Table2'[Field1])=[Measure_Table2],
    DIVIDE(MAX('Table1'[FieldX]),MAX('Table1'[FieldY]))  
    ,0)

3. Result:

vyangliumsft_3-1662448099935.png

If you need pbix, please click here.

Measure with criteria.pbix

 

Best Regards,

Liu Yang

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

Hi  @Pbiuserr ,

I created some data:

Table1:

vyangliumsft_0-1662448099927.png

Table2:

vyangliumsft_1-1662448099928.png

Here are the steps you can follow:

1. Add Index to Table1 and Table2 in Power Query.

In Power query. Add Column – Index Column – From 1.

vyangliumsft_2-1662448099930.png

2. Create measure.

Measure_Table2 =
MAXX(FILTER(ALL(Table1),'Table1'[Index]=MAX('Table2'[Index])),[Field1])
Measure with criteria =
IF(
    MAX('Table2'[Field1])=[Measure_Table2],
    DIVIDE(MAX('Table1'[FieldX]),MAX('Table1'[FieldY]))  
    ,0)

3. Result:

vyangliumsft_3-1662448099935.png

If you need pbix, please click here.

Measure with criteria.pbix

 

Best Regards,

Liu Yang

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

onurbmiguel_
Power Participant
Power Participant

Hi Pbiuserr

For create the calculated column you don't need the "CALCULATE". 

Try: 

IF (

   Table1[Field1] = Table1[Field2],

   DIVIDE (Table1[FieldX], Table1[FieldY]),

   0

)

 

After you can creat the measure for this new column. 

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos!! ;-
Best Regards
BC

 


Best regards


Bruno Costa | Super User


 


Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!! 


Take a look at the blog: PBI Portugal 


 


Hi

Thank you for your reply! For the measure, if the criteria is made, id like to have sum of FieldX / sum of FieldY

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors