Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Data Validation Problem - In cell drop down

I have introduced data validation and dynamic ranges to one of my co-workers.
All data validation drop down boxes were working fine when I sent them the
workbook. Now the in cell drop down boxes are not being show even though this
setting is enabled. Has anyone else experienced this problem. Help is greatly
appreciated
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Data Validation Problem - In cell drop down

The only time i have seen something similar happening was when deleting
Shapes on a worksheet. Eg:
dim s as shape
for each s in activesheet.shapes
s.delete
next
This would delete the drop-down from either the filters or the data
validation... cannot remember. Also after this action, the drop down were not
recoverable, and i would have to recreate the sheet.
To prevent this from happening, only specific shape-type had to be deleted:
dim s as shape
for each s in activesheet.shapes
if s.type = ... then
s.delete
end if
next

Maybe someone else will have a clearer idea.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Data Validation Problem - In cell drop down

No shapes were deleted via vba... but thats good to know. Any other ideas,
there is about 15 data validations w/ drop down boxes and not a one has the
drop down box visible. Very frustrating...

"sebastienm" wrote:

The only time i have seen something similar happening was when deleting
Shapes on a worksheet. Eg:
dim s as shape
for each s in activesheet.shapes
s.delete
next
This would delete the drop-down from either the filters or the data
validation... cannot remember. Also after this action, the drop down were not
recoverable, and i would have to recreate the sheet.
To prevent this from happening, only specific shape-type had to be deleted:
dim s as shape
for each s in activesheet.shapes
if s.type = ... then
s.delete
end if
next

Maybe someone else will have a clearer idea.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Data Validation Problem - In cell drop down

It you go into tools=Options=View and under "objects" you select the
rightmost radio button (Hide all), I can reproduce this behavior.

--
Regards,
Tom Ogilvy


"James W." wrote in message
...
No shapes were deleted via vba... but thats good to know. Any other

ideas,
there is about 15 data validations w/ drop down boxes and not a one has

the
drop down box visible. Very frustrating...

"sebastienm" wrote:

The only time i have seen something similar happening was when deleting
Shapes on a worksheet. Eg:
dim s as shape
for each s in activesheet.shapes
s.delete
next
This would delete the drop-down from either the filters or the data
validation... cannot remember. Also after this action, the drop down

were not
recoverable, and i would have to recreate the sheet.
To prevent this from happening, only specific shape-type had to be

deleted:
dim s as shape
for each s in activesheet.shapes
if s.type = ... then
s.delete
end if
next

Maybe someone else will have a clearer idea.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Data Validation Problem - In cell drop down

Tom,
I toggled back and forth between these settings but still no drop down
showing up. Any other suggestions...

"Tom Ogilvy" wrote:

It you go into tools=Options=View and under "objects" you select the
rightmost radio button (Hide all), I can reproduce this behavior.

--
Regards,
Tom Ogilvy


"James W." wrote in message
...
No shapes were deleted via vba... but thats good to know. Any other

ideas,
there is about 15 data validations w/ drop down boxes and not a one has

the
drop down box visible. Very frustrating...

"sebastienm" wrote:

The only time i have seen something similar happening was when deleting
Shapes on a worksheet. Eg:
dim s as shape
for each s in activesheet.shapes
s.delete
next
This would delete the drop-down from either the filters or the data
validation... cannot remember. Also after this action, the drop down

were not
recoverable, and i would have to recreate the sheet.
To prevent this from happening, only specific shape-type had to be

deleted:
dim s as shape
for each s in activesheet.shapes
if s.type = ... then
s.delete
end if
next

Maybe someone else will have a clearer idea.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com






  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Data Validation Problem - In cell drop down

If you say the option in the Validation dialog is to show the dropdown, then
I would lean toward the validation being deleted particularly if you have
macros in the workbook - a possibility that one is writing where it
shouldn't.

If the validation is being enforced, but the dropdown is not showing, then I
don't have another good guess.

--
Regards,
Tom Ogilvy

"James W." wrote in message
...
Tom,
I toggled back and forth between these settings but still no drop down
showing up. Any other suggestions...

"Tom Ogilvy" wrote:

It you go into tools=Options=View and under "objects" you select the
rightmost radio button (Hide all), I can reproduce this behavior.

--
Regards,
Tom Ogilvy


"James W." wrote in message
...
No shapes were deleted via vba... but thats good to know. Any other

ideas,
there is about 15 data validations w/ drop down boxes and not a one

has
the
drop down box visible. Very frustrating...

"sebastienm" wrote:

The only time i have seen something similar happening was when

deleting
Shapes on a worksheet. Eg:
dim s as shape
for each s in activesheet.shapes
s.delete
next
This would delete the drop-down from either the filters or the data
validation... cannot remember. Also after this action, the drop down

were not
recoverable, and i would have to recreate the sheet.
To prevent this from happening, only specific shape-type had to be

deleted:
dim s as shape
for each s in activesheet.shapes
if s.type = ... then
s.delete
end if
next

Maybe someone else will have a clearer idea.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com






  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Data Validation Problem - In cell drop down

Sorry no idea, just a few questions:
- do the validations shows up on your computer after the user gives you the
book back?
-on your user's computer
1- In that same sheet, can you add new Data Validation with dorpdowns
showing?
2- In that same sheet, can you see the dropdowns of the Auto-Filter (menu
Data Filter AutoFIlter) applied to a list.
3- What about 1 & 2 on another sheet from the same book?
4- What about 1 & 2 in another book (after having opened the book that
fails or in a new excel session)?

--
Regards,
Sébastien
<http://www.ondemandanalysis.com
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data Validation - In cell drop Down List VandyBill Excel Discussion (Misc queries) 1 January 17th 08 02:34 PM
BUG? : data validation in-cell drop down list is not displaying Patachoup Excel Discussion (Misc queries) 9 May 17th 07 07:51 AM
Edit problem for data validation drop down list purpletigerface Excel Worksheet Functions 4 February 28th 07 12:15 AM
Data Validation Drop-Down List Problem AmberLeaf Excel Programming 8 July 20th 05 11:03 PM
VBA code silently crashing. Problem with Data Validation drop down lists. Don Wiss Excel Programming 6 February 27th 05 09:46 AM


All times are GMT +1. The time now is 06:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"