I was wondering if there was a way possible to return the values of Part Number that includes text and numbers. I tried the following but Distinct returns invalid due to what I thought was a mix of text and numbers but turns out there's a limit?
What I am trying to do is extract, without duplicates, the top 15 (helper column) and then will rank them based on total quantity used.
Does anyone know a work around for this?
=IF([Weekly Helper]@row = 0, INDEX(DISTINCT([Part Number]:[Part Number]), Helper@row), "")
This returns Invalid.
However when limiting the rows to only 42, I get the result I need.
=IF([Weekly Helper]@row = 0, INDEX(DISTINCT([Part Number]1:[Part Number]42), Helper@row), "")