Feb 06 2024 05:35 PM
I have a master list of products in Column "A" and stores across the top in row 1. Some stores have less products listed in the column beneath and I'm trying to sort the columns so they line up with what is in column "A".
can anyone assist with this?
Feb 07 2024 12:06 AM
=IFNA(IF(MATCH($A2,B$2:B$27,0),$A2,""),"")
This formula is in cell G2 and filled across range G2:J27. Does this return the intended result?
Feb 07 2024 02:04 AM
Excel 365 with workaround for Excel nested array limitation
= LET(
isStocked?, DROP(REDUCE("", {1,2,3},
LAMBDA(acc,k, HSTACK(acc, COUNTIFS(INDEX(stocked,,k), product)))),,1),
IF(isStocked?, product, "")
)
['product' highlighted in red, 'stocked' in blue]
Feb 07 2024 02:38 PM