Google spreadsheet array formula

Silha

New Member
Joined
Jul 30, 2013
Messages
13
Hello all,

This is technically not an Excel question but about Google spreadsheets because I know how to do this on Excel but it won't work on Google spreadsheets.

I need to count all total instances of the word "Freelance" in a column A with a corresponding value of "London" in a column B. All cells in column A containing the word "Freelance" begin with this word, if that helps.

I can count all instances of "Freelance" using the below formula...

=Arrayformula(SUM(ISNUMBER(SEARCH("Freelance",ACTIVE!C:C))+0))

...but I can't seem to work out how to add a second criteria to only count instances of "freelance" in a particular city. Any help on how to do this would be really appreciated.

THANK YOU!!!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi,

Use the following (adjusted to the location of your data):
Rich (BB code):
=Arrayformula(SUM(ISNUMBER(SEARCH("Freelance",A:A))*(B:B="London")))

J.Ty.
 
Upvote 0
Thanks for the feedback and good luck!

J.Ty.
 
Upvote 0

Forum statistics

Threads
1,215,745
Messages
6,126,634
Members
449,323
Latest member
Smarti1

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