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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
anamika
Frequent Visitor

Dax Query

Hi,

I am faceing one issue with dax query which is written in DAX Query application. 

dax query is -
EVALUATE
ADDCOLUMNS (
    SUMMARIZECOLUMNS (
        'Dim MWBEProgram'[MWBEProgramName],
        FILTER ( 'Fact Contract', 'Fact Contract'[MWBEProgramID] <> BLANK () ),
       
        FILTER ( 'Fact Contract', 'Fact Contract'[ContractNumber] = "1234" )
    )
    ,
    "STATUS", IF ( 'Dim MWBEProgram'[MWBEProgramName] = "Non M/WBE", "NON M/WBE", "M/WBE" )
)

So, getting output like this:

Output.PNG

 

Is it possible to get only 'STATUS' Column?

5 REPLIES 5
d_gosbell
Super User
Super User

Can you clarify what your issue is? I can't see any output in this post, is there an error or unexpected data in the results?

 

My output is :

 

Output.PNG
Is it possible to get only "STATUS"Column?


@anamika wrote:

Is it possible to get only "STATUS"Column?


You can, the question does not make a lot of sense to me as I can't see how this column will make sense on its own, but you could use SELECTCOLUMNS to just return the STATUS column

 

eg

 

EVALUATE
SELECTCOLUMNS(
ADDCOLUMNS
 (
    SUMMARIZECOLUMNS (
        'Dim MWBEProgram'[MWBEProgramName],
        FILTER ( 'Fact Contract''Fact Contract'[MWBEProgramID] <> BLANK () ),
       
        FILTER ( 'Fact Contract''Fact Contract'[ContractNumber] = "1234" )
    )
    ,
    "STATUS"IF ( 'Dim MWBEProgram'[MWBEProgramName] = "Non M/WBE""NON M/WBE""M/WBE" )
)
"STATUS", [Status]
)

Getting error with the given query.


@anamika wrote:

Getting error with the given query.


What is the error message?

 

I can't run your exact query as I don't have access to your model, but I've run similar queries with this pattern and they work fine.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.