Sep 20 2024 10:42 AM
I have a list of assets that I am trying to list those who don't have access to each in column F. If everyone has access, then return a blank.
I've tried different formulas but messed around with each to create a few iterations. The three main formulas I attempted to use were:
Any help would be greatly appreciated. Clean up of data will be made using Power Query after this equation is figured out.
Sep 20 2024 11:13 AM
Solution=TEXTJOIN("; ",,FILTER($B$2:$B$9,($A$2:$A$9=A2)*($D$2:$D$9="Does not have access"),""))
This returns the expected result in my sheet.
Sep 20 2024 11:13 AM
Solution=TEXTJOIN("; ",,FILTER($B$2:$B$9,($A$2:$A$9=A2)*($D$2:$D$9="Does not have access"),""))
This returns the expected result in my sheet.