combine two formulas?

NAPCOSARA

New Member
Joined
Sep 30, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am trying to combine two formulas in excel, one to determine if a vendor is one of two options (the vendor number starts with M or not) and the other formula is to count the number of cells that are not blank. I basically need to count if a cell has data and then separate this into one of two vendor categories.

So far my formula to determine the vendor is =COUNTIF(RESPONSES!A2:A457, "*M*") or =COUNTIF(RESPONSES!A3:A458,"<>*M*")
and my formula to count data is =COUNTIF(RESPONSES!C2:C457, "<>")

Is there a way to combine the two formulas to make it determine the vendor category and then take it a step further to count the number of cells with data?
 

Attachments

  • data sheet.PNG
    data sheet.PNG
    45.3 KB · Views: 15
  • scorecard.PNG
    scorecard.PNG
    32.2 KB · Views: 15

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Try

Excel Formula:
=COUNTIFS(RESPONSES!A2:A457, "*M*",RESPONSES!C2:C457, "<>")
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,186
Members
448,554
Latest member
Gleisner2

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