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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
sbuster
Helper I
Helper I

Minx returning blank row

I'm trying to understand why the following DAX expression executed in DAX Studio returns a blank rows.  I don't see an explanation in the documentation about this.  I'd prefer not to have any rows returned vs a blank one.

 

DEFINE
    table t = {(1)}
    var _filter = filter(t,[Value]>1)
     evaluate {
        Calculate(
            Minx(_filter,[Value]))
    }

 

Furthermore, why this expression returns 1?  I thought Calculate applied the filter prior to the expression.

 DEFINE
    table t = {(1)}
    var _filter = filter(t,[Value]>1)
    
    evaluate {
        Calculate(
            Minx(t,[Value]),
            filter(t,[Value]>1)
        )
    }

1 ACCEPTED SOLUTION

Hey @sbuster ,

 

as you figured out DAX Studio will show at least one row.

It is blank because the result returns a blank table.

 

Your second example returns also blank for me. Can you double check if it returns 1 for you?

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic

View solution in original post

3 REPLIES 3
sbuster
Helper I
Helper I

I disccovered DAX Studio is returning a single row because I'm using the table constructor with no value, which will produce a single row with no value...

 

 

Hey @sbuster ,

 

as you figured out DAX Studio will show at least one row.

It is blank because the result returns a blank table.

 

Your second example returns also blank for me. Can you double check if it returns 1 for you?

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic

The second example definitely returns 1 for me.  My assumption in the second example is that Calculate will call the filter function, which has argument t, first.  Then it will call Minx, which I do have as the first argument hte original table t.  How would the filtered table (the result of the filter funciton within Calculate) be passed into the Minx function?  

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.