Hi,
I need to extract unique values based on two conditions. Tried below formula but no luck.
={IFERROR(INDEX('Raw Data'!$R:$R,MATCH(0,COUNTIF(Y10:$Y$10,'Raw Data'!$R:$R)+IF('Raw Data'!$N:$N<>$B$2,1,0)+IF('Raw Data'!$AD:$AD<>$D$2,1,0),0)),"")}
where condition 1 is in $B$2, Condition 2 is in $D$2.
Data to extract is in Raw Data'!$R:$R
Entered the formula in Y9.
My issue is this formula is pulling down the performance of my system.
Requirement is to extract unique list of Brands if if meets the condition in B2 & D2;
Ex. Get list of unique brands if Group is "com" and Type is "Pack".
As I'm using excel 2019. Is there any other way to achieve this without hampering the system performance.
Attached sample file.
I need to extract unique values based on two conditions. Tried below formula but no luck.
={IFERROR(INDEX('Raw Data'!$R:$R,MATCH(0,COUNTIF(Y10:$Y$10,'Raw Data'!$R:$R)+IF('Raw Data'!$N:$N<>$B$2,1,0)+IF('Raw Data'!$AD:$AD<>$D$2,1,0),0)),"")}
where condition 1 is in $B$2, Condition 2 is in $D$2.
Data to extract is in Raw Data'!$R:$R
Entered the formula in Y9.
My issue is this formula is pulling down the performance of my system.
Requirement is to extract unique list of Brands if if meets the condition in B2 & D2;
Ex. Get list of unique brands if Group is "com" and Type is "Pack".
As I'm using excel 2019. Is there any other way to achieve this without hampering the system performance.
Group | Type | Brand |
Com | Pack | Apple |
Com | NA | Lenovo |
Com | Single | HP |
Com | Single | Apple |
Com | Single | Apple |
comp | Single | HP |
comp | Single | Lenovo |
comp | Pack | Acer |
comp | Pack | Acer |
comp | Pack | Apple |
comp | NA | Asus |
comp | Pack | Apple |
comp | Single | HP |
comp | Pack | HP |
comp | Pack | Apple |
Attached sample file.