Amend formula to count unique text in a range

Nick70

Active Member
Joined
Aug 20, 2013
Messages
299
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a formula to count unique text in a range based on certain conditions (see below):

Excel Formula:
=ROWS(UNIQUE(FILTER(C4:C17,(B4:B17="client a")*(D4:D17="February")*(E4:E17=2021))))

Is it possible to add 1 more condition for range (B4:B17) on top of (B4:B17="client a")?

The new condition would be (B4:B17="client b") so the conditions we now have to take into account are:

(B4:B17="client a")*(B4:B17="client b")*(D4:D17="February")*(E4:E17=2021)

Is this something possible?
How would formula look?
Otherwise is there another way (even using VBA) to calculate unique text based on conditions below?
(B4:B17="client a")*(B4:B17="client b")*(D4:D17="February")*(E4:E17=2021)

Thanks,
Nic :unsure:
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
How about
Excel Formula:
=ROWS(UNIQUE(FILTER(C4:C17,((B4:B17="client a")+(B4:B17="client b"))*(D4:D17="February")*(E4:E17=2021))))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,231
Messages
6,123,754
Members
449,118
Latest member
kingjet

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