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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
dandywong
Frequent Visitor

Creating a new table based on multiple criteria

I am trying to create a new table based on 2 filter criteria:

 

1) The ScopeStatus has to = Green

2) ProjectPhase has to = Completed

 

If the 2 criteria are not met, then it will not show up on the new table. Any help is greatly appreciated! Thanks!

Image of Tables.PNG

1 ACCEPTED SOLUTION

Hi @dandywong,


Your parentesis are misplaced so the all function is.working incorrectly.

The measure should be

Test Table =
FILTER (
    ALL (
        Projects[ProjectIdentifier],
        Projects[ProjectPhase],
        Projects[EnterpriseProjectTypeDescription],
        Projects[ScopeStatus]
    ),
    Projects[ProjectPhase] = "Completed"
        && Projects[ScopeStatus] = "Green"
)



I also notice that you were missing the Project ScopeStatus on your ALL formula without it the filter wouldn't had context and the result would be incorrect.

Regards
MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

6 REPLIES 6
MFelix
Super User
Super User

Hi @dandywong,

 

If you are on the query Editor you just need to Reference the query to the initial one and then add a filter on the columns you need.

 

On dax add a new table with the following code:

Table =
FILTER (
    ALL ( Projects[Project1]; Projects[ProjectPhase]; Projects[ScopeStatus] );
    Projects[ProjectPhase] = "Completed"
        && Projects[ScopeStatus] = "Green"
)

On the ALL sintax add all the columns you want to pass to the new column from the previous one.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi there,

 

I tried this formula, but it didn't work:

 

Error.PNG

 

Any idea on how to fix this?

Hi @dandywong,

 

You need to take out the comma after "Green". The && cannot be preceded by a comma.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks MFelix!!!!

 

Sorry, I think I'm missing something....

 

Error 2.PNG

 

Still getting an error.

Hi @dandywong,


Your parentesis are misplaced so the all function is.working incorrectly.

The measure should be

Test Table =
FILTER (
    ALL (
        Projects[ProjectIdentifier],
        Projects[ProjectPhase],
        Projects[EnterpriseProjectTypeDescription],
        Projects[ScopeStatus]
    ),
    Projects[ProjectPhase] = "Completed"
        && Projects[ScopeStatus] = "Green"
)



I also notice that you were missing the Project ScopeStatus on your ALL formula without it the filter wouldn't had context and the result would be incorrect.

Regards
MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thank you MFelix! That did the trick!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.