Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
TIA
Solved! Go to Solution.
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"})
)
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"})
)
User | Count |
---|---|
82 | |
78 | |
67 | |
46 | |
45 |
User | Count |
---|---|
105 | |
44 | |
39 | |
39 | |
39 |