Jul 19 2022 08:30 AM
I have a report I need to put in alphabetical order, but each title has subtasks beneath it. I want to put all the titles (names in bold) in alphabetical order, but I want the information that goes along with each title (construction drawings, design drawings etc.) to be locked so it is not put in alphabetical order. For example,
The names, trevor, cheryl, and kim are my titles that I want to be in alphabetical order.. but the rows beneath that are not bolded I need to keep with the name as this data is specific to the name of the person. It needs to somehow be grouped together (but the group function in my experience does not work for what I am trying to do).
How can I sort the names in alphabetical, but keep the below information in tact?
Is there some way that I can have the name drop down the information below, so it can be minimized and dropped down? The data also needs to stay with the columns to the right.
I have had 0 luck finding a way to do this. Please help!
Jul 19 2022 08:47 AM
Jul 19 2022 08:59 AM
SolutionThis might work if you're open to using a formula solution:
=LET(order,SCAN("",names,LAMBDA(a,v,IF(XOR(v={"trevor","cheryl","kim"}),v,a))),SORTBY(data,order,1))
More names can be added as needed.
Please see attached workbook sample.
Jul 19 2022 09:54 AM