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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
sabeensp
Helper IV
Helper IV

Measure based on Sub Query

Hello,

How do I craete a measure based on a SQL Sub query (below)

Select distinct COUNT(Column1)
from TABLE1
where COLUMN2 = 'C'
and not exists (
select Column 4, Column 5
from  TABLE2
where ltrim(rtrim(columnX)) <> 'RED'
and COLUMNB = "LARGE"
and COLUMNY = 20)

1 ACCEPTED SOLUTION

You're swapping between Column1-5 and ColumnB-Y in your SQL. I can't even tell what the foreign key linking the two is. 

 

It seems you're trying to count the primary key from table 1, where the related values in table2 are not red, large, and 20? If you could share a subset of sample data you have in PowerBI in a copy/pasteable form, this would be much clearer to us.

 

I'm guessing your DAX measure would look like this, but without a more complete picture, it's a complete guess.

Count Things = 
CALCULATE(
    DISTINCTCOUNT(Table2[ForeignKey]),
    RELATED(Table1[Column2]) = "C" && Table2[ColumnX] <> "Red" && Table2[ColumnB] = "Large" && Table2[ColumnY] = 20
)

This seems.... like a very specific measure, and not in a good way.  I would consider setting up a simpler measure like DISTINCTCOUNT(Table2[ForeignKey]), and setting up slicers that filter on the other columns.  You could display the simpler measure in a card, and even have the slicers only affect the one card visual if you wanted. This way, it's responsive and you're not locked in to the one combination of C, not Red, Large, and 20.  

View solution in original post

3 REPLIES 3
d_gosbell
Super User
Super User

This question is not clear in it's current form. Try re-posting your question using the following guidelines:

How to Get Your Question Answered Quickly - Microsoft Power BI Community

@d_gosbell 

 

What I'm looking for my measure to return COUNT.

 

I have 2 tables in my model Table1 and Table2

Both table have  a relationship 1:M.

Query below is the SQL query, which I need to migrate to Power BI. How do I do that, what DAX I need to write to accomplish sam eresult as the SQL query below?

 

Select distinct COUNT(Column1)
from TABLE1
where COLUMN2 = 'C'
and not exists (
select Column 4, Column 5
from TABLE2
where ltrim(rtrim(columnX)) <> 'RED'
and COLUMNB = "LARGE"
and COLUMNY = 20)

You're swapping between Column1-5 and ColumnB-Y in your SQL. I can't even tell what the foreign key linking the two is. 

 

It seems you're trying to count the primary key from table 1, where the related values in table2 are not red, large, and 20? If you could share a subset of sample data you have in PowerBI in a copy/pasteable form, this would be much clearer to us.

 

I'm guessing your DAX measure would look like this, but without a more complete picture, it's a complete guess.

Count Things = 
CALCULATE(
    DISTINCTCOUNT(Table2[ForeignKey]),
    RELATED(Table1[Column2]) = "C" && Table2[ColumnX] <> "Red" && Table2[ColumnB] = "Large" && Table2[ColumnY] = 20
)

This seems.... like a very specific measure, and not in a good way.  I would consider setting up a simpler measure like DISTINCTCOUNT(Table2[ForeignKey]), and setting up slicers that filter on the other columns.  You could display the simpler measure in a card, and even have the slicers only affect the one card visual if you wanted. This way, it's responsive and you're not locked in to the one combination of C, not Red, Large, and 20.  

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.