Trouble with combining And with Unique function

diamondjoechubbs

New Member
Joined
Oct 26, 2020
Messages
18
Office Version
  1. 365
Platform
  1. Windows
I am having some trouble combining some formulas using the unique feature. I was able to use an IF function with unique, but when combining IF and AND the function is not working

This one works with one criteria
=UNIQUE(IF('Tract Line List'!AK2:AK999>1,'Tract Line List'!$B$2:$B$999,""))

Using AND for two criteria, it does not return values the same way the single one does
=UNIQUE(IF(AND('Tract Line List'!W2:W999>1,'Tract Line List'!AK2:AK999>1),'Tract Line List'!$B$2:$B$999,""))

Thank you in advance
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
How about
Excel Formula:
=UNIQUE(FILTER('Tract Line List'!$B$2:$B$999,('Tract Line List'!W2:W999>1)*('Tract Line List'!AK2:AK999>1)))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,929
Messages
6,122,314
Members
449,081
Latest member
tanurai

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