简体   繁体   中英

Excel Formula for Unique Values Not Apart of Exclusion List

Good day all,

Using Excel formulas, how do I solve for uniques within array that aren't apart of uniques from another array?

I've tried.

=UNIQUE(B:B&"<>header",FALSE,TRUE)

=UNIQUE(B:B,FALSE,TRUE)&"<>header"

=UNIQUE(B:B,FALSE,TRUE)-"header"

=UNIQUE(B:B,FALSE,TRUE)-{"header"}

{=UNIQUE(B:B,FALSE,TRUE)-{"header"}}

{=UNIQUE(B:B,FALSE,TRUE)}-{"header"}

{=UNIQUE(B:B,FALSE,TRUE)&"<>header"}

=UNIQUE(B:B,FALSE,TRUE)-UNIQUE("header")

In this example I've only excluded 1 header, however my headers will be constantly moving so it is important I can dynamically add and subtract unique items to remove from entire column.

Edit: Giving more information below

I've continued research and came across this article however it doesnt fit my needs. https://www.mrexcel.com/board/threads/extract-unique-values-but-also-exclude-names-from-another-column.1101407/

Here is a picture of what I'm trying to accomplish

电子表格的图像示例

=FILTER(list2,COUNTIF(exclusion,list2)=0)

Or without list 2 helper: =UNIQUE(FILTER(listist1,COUNTIF(exclusion,list1)=0))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM