Hi,
I have a file with two columns "Process Name" & "Process Type".
I would like to do a unique filter like in Excel. Return all Process Names where Process Type = 3P - Third Party.
While not user friendly, I was able to get this to work for the unique values, but cannot figure out the filter:
Row 1:
=INDEX(DISTINCT({Process Name}), 1)
Row 2:1000:
=IFERROR(INDEX(DISTINCT({Process Name}), 1 + COUNT([Process_Name]$1:[Process_Name]1)), "")
Is there a way to not make this so difficult?