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
stellaliu
Regular Visitor

Compare if the values of two adjacent rows are the same.

Hi,

 

I was stuck in comparing if the values of two adjacent rows are the same.

 

I have a table like below. Column A,B,C are known, and I want to calculate for Column D. If in Excel, my equation for D3 should be:

=IF($B3="A","",IF($B3="B",IF(C3=C2,"","check"),"")

 

q.PNG

 

Could you please help me to translate it into a PowerBI language? Thank you very much!

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @stellaliu

 

Try this column

 

Status =
VAR previousQuantity =
    CALCULATE (
        SUM ( Table1[Quantity] ),
        FILTER ( Table1, Table1[#] = EARLIER ( Table1[#] ) - 1 )
    )
RETURN
    IF ( Table1[Types] = "B" && Table1[Quantity] <> previousQuantity, "Check" )

Regards
Zubair

Please try my custom visuals

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

Hi @stellaliu

 

Try this column

 

Status =
VAR previousQuantity =
    CALCULATE (
        SUM ( Table1[Quantity] ),
        FILTER ( Table1, Table1[#] = EARLIER ( Table1[#] ) - 1 )
    )
RETURN
    IF ( Table1[Types] = "B" && Table1[Quantity] <> previousQuantity, "Check" )

Regards
Zubair

Please try my custom visuals

Hi,

 

Thank you very much! It definatelly makes sense!

 

But what if I don't have the first column with serial numbers? Are there any ways to revise the equation, or any ways to add a new column with serial numbers to my existed table?

 

Stella

Yes

You can add an index column from query editor's.. "ADD Column" tab

Regards
Zubair

Please try my custom visuals

Perfect! Thank you very much!!

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.