yellowcedar
New Member
- Joined
- Jan 26, 2024
- Messages
- 6
- Office Version
- 2021
- Platform
- Windows
I am trying to formulate a Summary sheet that organizes select data from my larger more complex Master sheet.
I have successfully used the below formula to reference and import a range from my Master sheet, and then sort the specified data's row order by value within column 7 (in descending order):
Now, I would like to do this exact same thing, however this time only include only certain columns from within
The five columns that should be included are C, D, Q, V, G (and they should be arranged in that order)
This formula
worked but it only displays the first row (row 10), and I need the entire range of rows (from 10:2127).
Is there a way I can change the above formula to make this work, or should I try using another method. I have seen mentions of doing this with INDEX and or SEQUENCE functions alongside the SORT function however I cannot figure out how to apply these to my circumstance.
I have successfully used the below formula to reference and import a range from my Master sheet, and then sort the specified data's row order by value within column 7 (in descending order):
Excel Formula:
=SORT(Master!A10:V2127,7,FALSE)
Now, I would like to do this exact same thing, however this time only include only certain columns from within
Master!A10:V2127
and change the order of these columns in my Summary sheet.The five columns that should be included are C, D, Q, V, G (and they should be arranged in that order)
This formula
Excel Formula:
=SORT(CHOOSE({1,2,4,5,3}, Master!C10:C2127, Master!D10:D2127, Master!G10:G2127, Master!Q10:Q2127, Master!V10:V2127), 7, FALSE)
Is there a way I can change the above formula to make this work, or should I try using another method. I have seen mentions of doing this with INDEX and or SEQUENCE functions alongside the SORT function however I cannot figure out how to apply these to my circumstance.