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
mrguan007
New Member

Array Formula - Please Help

Hi everyone, 

 

I am trying to create an array formula in DAX that I can't seem to wrap my mind around. 

 

Here is what I currently have in excel - which I will explain the logic of what I am trying to do. 

 

 ABC  D
1ControlPhaseStatusStatus Adjusted
21.1-C-1Interim ICompleteIn Progess
31.1-C-1Interim IIIn ProgessIn Progess
41.1-C-2Interim ICompleteIn Progress
51.1-C-3Interim ICompleteComplete
61.1-C-3Interim IICompleteComplete

 

{=IFERROR(VLOOKUP(A2,IF($B$1:$B$6="Interim II",$A$1:$C$6,""),3,FALSE),"In Progress")}

 

The meat of the formula is in the red. I am currently running a Array Formula to achieve this in excel. 

 

So essentially, what I am trying to do is for the same control (i.e. 1.1-C-1), if the Interim II status isn't complete, or if the interim II status doesn't exist for a control, then that control should show as "in progress" for all instances. Once Interim II is completed, then both instances of the control will show as "Complete".

 

Please let me know! 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@mrguan007

 

Try with following column

 

Column =
IF (
    CONTAINS (
        FILTER ( Table1, [Control] = EARLIER ( [Control] ) && [Phase] = "Interim II" ),
        [Status], "Complete"
    ),
    "Complete",
    "In Progress"
)

 

or this one

 

Column 2 =
IF (
    CONTAINS (
        FILTER ( Table1, [Control] = EARLIER ( [Control] ) ),
        [Status], "Complete",
        [Phase], "Interim II"
    ),
    "Complete",
    "In Progress"
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@mrguan007

 

Try with following column

 

Column =
IF (
    CONTAINS (
        FILTER ( Table1, [Control] = EARLIER ( [Control] ) && [Phase] = "Interim II" ),
        [Status], "Complete"
    ),
    "Complete",
    "In Progress"
)

 

or this one

 

Column 2 =
IF (
    CONTAINS (
        FILTER ( Table1, [Control] = EARLIER ( [Control] ) ),
        [Status], "Complete",
        [Phase], "Interim II"
    ),
    "Complete",
    "In Progress"
)

@Zubair_Muhammad, thank you!!!!

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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.