• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to add item in the bottom of array already generated with INDEX

MBS

Member
Hi all,

Refer attached sheet. Solution for Excel 2013 is expected. (without Dynamic Array)
I want to add "region" at the bottom of every list appeared.
I think, My question can be understood as you go through attached sheet.
I will use this in drop down list.

Thanks All.
 

Attachments

  • How to add item in bottom of array (Array Formula).xlsx
    9.3 KB · Views: 6
Does this what you are expected?

1] In D22:D33, I used an Index+Match copied down formula+Conditional formatting to mask duplicates

2] Please see my attachment.

81979
 

Attachments

  • Index+Match.xlsx
    12.1 KB · Views: 4
  • Like
Reactions: MBS
Of course, you could always dump Office 2013 and move to a more straightforward programming environment!
Code:
= LET(
      dropdown,  XLOOKUP(selectedDDName,dropdownHeader,dropdowns),
      nonblanks, FILTER(dropdown, dropdown<>""),
      VSTACK(nonblanks, "Region")
  )
or, if you prefer to avoid formulae showing their content on your spreadsheet,
Code:
= Dropdownλ(selectedDDName)
Then again, you may not be so fortunate as to have the option :(
 
Last edited:
It is possible & easier if you have Excel2019 and up version.

Or if you have Textjoin function.

Then,

What is your Excel version using?

Are you using Excel 2013?

Regards
 
Last edited:
Back
Top