I am trying to filter data by column reference
Not Work For Me =UNIQUE(A2:C6)
What i want it shoutd be like What actually i want
I want find UNIQUE Data Through Column Reference B is Mo No.
I am trying to filter data by column reference
Not Work For Me =UNIQUE(A2:C6)
What i want it shoutd be like What actually i want
I want find UNIQUE Data Through Column Reference B is Mo No.
Copyright © 2021 Jogjafile Inc.
Solution
In this case a simple
UNIQUEstatement is not enough. You are looking for a function that takes in account only one column for your uniqueness check.In this case
SORTNis best suited for this job.Here is how it works:
I have 7 rows so at most 7 results
In this case 2: Show at most the first n(7) rows after removing duplicate rows.
In this case is 2 as well. Since the uniqueness check is performed in the B Column.
This is up to you