Countifs with Power Query

Plukey

Board Regular
Joined
Apr 19, 2019
Messages
138
Office Version
  1. 2016
Platform
  1. Windows
Excel Formula:
=COUNTIFS(Mondays_Report[PLN Complete],"No",Mondays_Report[EBOM],"")

So, here's what i have for a formula that works with Excel, But, I'm trying to achieve a custom column with this formula using Power Query
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
A custom column similar to this... If [EBOM] has a "No" then remove the "no" from [PLN Complete]

Im trying to count PLN Complete only if EBOM doesnt have a NO

1655159044880.png
 
Upvote 0
In a new column
= if [PLN Complete] = "No" then null else [PLN Complete]
Then delete the column PLN Complete and your new column replaces it.

You can then group by the new column and select Count as a function for the column
 
Upvote 0
Solution
In a new column
= if [PLN Complete] = "No" then null else [PLN Complete]
Then delete the column PLN Complete and your new column replaces it.

You can then group by the new column and select Count as a function for the column
Thanks, that's what I needed.
 
Upvote 0

Forum statistics

Threads
1,223,652
Messages
6,173,606
Members
452,522
Latest member
saeedfiroozei

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top