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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
dd88
Post Patron
Post Patron

Obtain Total/Count on multiple conditions

Table View has a column LONG TERM PLACEMENT 1 and contains a mix of data.


I want to obtain the total of real data. therefore to count and not include the following NO PLACEMENT, N/A, blank.
So far I am unsuccessful in calculated column, or power query.

How can this be achieved please.

 

Obtain total on muptiple conditions.png

 

 

 

TIA

 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

If you don't need the blank, no placement and NA rows anymore, then filter them out in PQ. 

= Table.SelectRows(Source, each ([LONG TERM PLACEMENT 1 ] <> "" and LONG TERM PLACEMENT 1 <> "NA" and LONG TERM PLACEMENT 1 <> "NO PLACEMENT"))

 You'll need to swap out Source for whatever your previous step was, or just modify the code in the formula bar.

 

If you need those rows, then there are ways to do it with either DAX or filters. 
You can consider using LONG TERM PLACEMENT 1 in a slicer and deselecting those unwanted values. Or, using DAX, something like:

Measure = CALCULATE(COUNTROWS(Table), FILTER(Table, 
    Table[LONG TERM PLACEMENT 1] not IN {"", "NO PLACEMENT", "N/A"})
)

 

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

If you don't need the blank, no placement and NA rows anymore, then filter them out in PQ. 

= Table.SelectRows(Source, each ([LONG TERM PLACEMENT 1 ] <> "" and LONG TERM PLACEMENT 1 <> "NA" and LONG TERM PLACEMENT 1 <> "NO PLACEMENT"))

 You'll need to swap out Source for whatever your previous step was, or just modify the code in the formula bar.

 

If you need those rows, then there are ways to do it with either DAX or filters. 
You can consider using LONG TERM PLACEMENT 1 in a slicer and deselecting those unwanted values. Or, using DAX, something like:

Measure = CALCULATE(COUNTROWS(Table), FILTER(Table, 
    Table[LONG TERM PLACEMENT 1] not IN {"", "NO PLACEMENT", "N/A"})
)

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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