Dynamically Updating Data Validation Drop Down Menu/List

sgkessel

New Member
Joined
Feb 7, 2012
Messages
15
This is probably easy for your Excel genius'
I have made a data validation drop down list that SHOULD update for when more values are entered into the column being referenced with an offset function

=OFFSET(Data!$AR$6,0,0,COUNTA(Data!$AR:$AR)-5)

the problem I am having is that Column AR has either text or blank/space
not EMPTY CELL which I believe is what this formula above is looking for...

I would like my drop down menu to only show text from column AR and dynamically update as "" turns into Text.

PLEASE HELP... I'm sooooo close! Thanks!!!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hi, not sure if this will for you.
Without VBA:
Considering that your data in AR6 down has a Named range called "lost"

in AS5 type:
=IFERROR(INDEX(lost,MATCH(0,IF(MAX(NOT(COUNTIF($AS$4:AS4,lost))
*(COUNTIF(lost,">"&lost)+1))=(COUNTIF(lost,">"&lost)+1),0,1),0)),"")
Ctrl + Shift + Enter, not just enter, copied down till needed.
in AT6 type:
=IF(AS6=AS4,"",AS6)

Your formula for the data validation would be:
=OFFSET(Data!$AT$6,0,0,COUNTA(Data!$AT:$AT)-5)

Would that work?
 
Upvote 0
This is probably easy for your Excel genius'
I have made a data validation drop down list that SHOULD update for when more values are entered into the column being referenced with an offset function

=OFFSET(Data!$AR$6,0,0,COUNTA(Data!$AR:$AR)-5)

the problem I am having is that Column AR has either text or blank/space
not EMPTY CELL which I believe is what this formula above is looking for...

I would like my drop down menu to only show text from column AR and dynamically update as "" turns into Text.

PLEASE HELP... I'm sooooo close! Thanks!!!
Maybe this...

=OFFSET(Data!$AR$6,0,0,COUNTIF(Data!$AR$6:$AR$65536,"?*"))

Adjust for a reasonable end of range AR65536.
 
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,274
Members
452,628
Latest member
dd2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top