I have a sheet called PN List that has a checkbox column to signify which parts are packaged parts.
I'm creating a new sheet that gives me a list to be used in a dropdown for just packaged parts.
In the new sheet PN List - Pack, I have two columns 1 - PPN (column I want to fill), 2 - PaintHelper (checkbox column for collecting)
In the PN List - Pack, PPN column I have the formula:
=INDEX(DISTINCT(COLLECT({Part Number}, {Ck If Painted}, PaintHelper@row)), 1)
{Part Number} - Part number column on PN List sheet
{Ck If Painted} - Checkbox column on PN List sheet
PaintHelper@row - Checkbox column on PN List - Pack sheet. All the boxes in the rows are checked.
It used to work, now it doesn't. What am I missing?