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
prakash11440278
Post Prodigy
Post Prodigy

Urgent help in Comparing cell value using AND Operator

HI All,

 

I need a help in comparing two cell values using AND Opertor in powerbi similar to the below image.

Formula i used in excel is: =AND(B2=B3,A2="MOD",A3="DOV"

 

Capture.PNG

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @prakash11440278,

 

Rows in Power BI are different from them in Excel. So we need to add an index in the Query Editor first. You can check it out in this file.

Column =
VAR currentIndex = [Index]
VAR nextUPN =
    CALCULATE (
        VALUES ( Table1[User Principal Name] ),
        FILTER ( ALL ( 'Table1' ), Table1[Index] = currentIndex + 1 )
    )
VAR nextAN =
    CALCULATE (
        VALUES ( Table1[Application Name] ),
        FILTER ( ALL ( Table1 ), Table1[Index] = currentIndex + 1 )
    )
RETURN
    IF (
        [User Principal Name] = nextUPN
            && [Application Name] = "MOD"
            && nextAN = "DOV",
        TRUE (),
        FALSE ()
    )

Urgent_help_in_Comparing_cell_value_using_AND_Operator

 

 

Best Regards,

Dale

Community Support Team _ Dale
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
v-jiascu-msft
Employee
Employee

Hi @prakash11440278,

 

Rows in Power BI are different from them in Excel. So we need to add an index in the Query Editor first. You can check it out in this file.

Column =
VAR currentIndex = [Index]
VAR nextUPN =
    CALCULATE (
        VALUES ( Table1[User Principal Name] ),
        FILTER ( ALL ( 'Table1' ), Table1[Index] = currentIndex + 1 )
    )
VAR nextAN =
    CALCULATE (
        VALUES ( Table1[Application Name] ),
        FILTER ( ALL ( Table1 ), Table1[Index] = currentIndex + 1 )
    )
RETURN
    IF (
        [User Principal Name] = nextUPN
            && [Application Name] = "MOD"
            && nextAN = "DOV",
        TRUE (),
        FALSE ()
    )

Urgent_help_in_Comparing_cell_value_using_AND_Operator

 

 

Best Regards,

Dale

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

Hi Prakash,

 

Can't download image, can you please reattach screen shot

 

Thanks

Just uploaded a new image. Please check again, thanks for your help.

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.