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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
dd88
Resolver I
Resolver I

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors