Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Validation list functionality disappered

In Excel 2003 I have a specific sheet where the validation list does not
appear (arrow button gone) when set. I can set it up (Data/Validation menu)
as usual with out problems. The other sheets in the workbook do not have this
problem.

I don't know if this has anything to do with the phenomenon, but I have
recently run this macro in the sheet:

Dim shp As Shape
For Each shp In ActiveSheet.Shapes
shp.Delete
Next

Can anyone help me get my validation lists back?

Thanks
The Doctor

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 789
Default Validation list functionality disappered

On Jan 30, 2:46*pm, Dr. Schwartz
wrote:
In Excel 2003 I have a specific sheet where the validation list does not
appear (arrow button gone) when set. I can set it up (Data/Validation menu)
as usual with out problems. The other sheets in the workbook do not have this
problem.

I don't know if this has anything to do with the phenomenon, but I have
recently run this macro in the sheet:

* * Dim shp As Shape
* * For Each shp In ActiveSheet.Shapes
* * * * shp.Delete
* * Next

Can anyone help me get my validation lists back?

Thanks
The Doctor


Hi
May be a mile off, but is your validation above a Freeze Panes line?
Seem to remember validation not working above a Freeze Pane, at least
in earlier Excel versions..
Paul
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Validation list functionality disappered

Thanks Paul, but I'm not using Freeze panes at all.

Anyone else?

" wrote:

On Jan 30, 2:46 pm, Dr. Schwartz
wrote:
In Excel 2003 I have a specific sheet where the validation list does not
appear (arrow button gone) when set. I can set it up (Data/Validation menu)
as usual with out problems. The other sheets in the workbook do not have this
problem.

I don't know if this has anything to do with the phenomenon, but I have
recently run this macro in the sheet:

Dim shp As Shape
For Each shp In ActiveSheet.Shapes
shp.Delete
Next

Can anyone help me get my validation lists back?

Thanks
The Doctor


Hi
May be a mile off, but is your validation above a Freeze Panes line?
Seem to remember validation not working above a Freeze Pane, at least
in earlier Excel versions..
Paul

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Validation list functionality disappered

The dropdown arrow in the data|validation cell is a shape.

Ron de Bruin has lots of notes he
http://www.rondebruin.nl/controlsobjectsworksheet.htm

Including this warning:

<do Not use code like below because it is possible that

It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

Note: Not every Excel versions have all problems.
Sub NotUseThisMacro()
'Loop through the Shapes collection
Dim myshape As Shape
For Each myshape In ActiveSheet.Shapes
myshape.Delete
Next myshape
End Sub

========
I'm not sure if you can get that data|validation arrow back.

Maybe you could delete the row and insert a new row and put it back.

(or copy the data to a new sheet and rebuild the data|validation.)

====
I tried searching google for solutions (other people have damaged the
data|validation arrows, too!). But I couldn't find enough to remind me of the
solution that worked--sorry.

Dr. Schwartz wrote:

In Excel 2003 I have a specific sheet where the validation list does not
appear (arrow button gone) when set. I can set it up (Data/Validation menu)
as usual with out problems. The other sheets in the workbook do not have this
problem.

I don't know if this has anything to do with the phenomenon, but I have
recently run this macro in the sheet:

Dim shp As Shape
For Each shp In ActiveSheet.Shapes
shp.Delete
Next

Can anyone help me get my validation lists back?

Thanks
The Doctor


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Validation list functionality disappered

Once again you saved my day Dave - thank you for solving this mystery. I
ended up moving to a new sheet.

The Doctor

"Dave Peterson" wrote:

The dropdown arrow in the data|validation cell is a shape.

Ron de Bruin has lots of notes he
http://www.rondebruin.nl/controlsobjectsworksheet.htm

Including this warning:

<do Not use code like below because it is possible that

It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

Note: Not every Excel versions have all problems.
Sub NotUseThisMacro()
'Loop through the Shapes collection
Dim myshape As Shape
For Each myshape In ActiveSheet.Shapes
myshape.Delete
Next myshape
End Sub

========
I'm not sure if you can get that data|validation arrow back.

Maybe you could delete the row and insert a new row and put it back.

(or copy the data to a new sheet and rebuild the data|validation.)

====
I tried searching google for solutions (other people have damaged the
data|validation arrows, too!). But I couldn't find enough to remind me of the
solution that worked--sorry.

Dr. Schwartz wrote:

In Excel 2003 I have a specific sheet where the validation list does not
appear (arrow button gone) when set. I can set it up (Data/Validation menu)
as usual with out problems. The other sheets in the workbook do not have this
problem.

I don't know if this has anything to do with the phenomenon, but I have
recently run this macro in the sheet:

Dim shp As Shape
For Each shp In ActiveSheet.Shapes
shp.Delete
Next

Can anyone help me get my validation lists back?

Thanks
The Doctor


--

Dave Peterson

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
Protecting sheet but keeping list functionality in 2003 Doug Glancy Excel Worksheet Functions 2 September 30th 09 05:09 PM
Using list functionality jIM Excel Worksheet Functions 1 January 22nd 08 01:57 PM
YIKES! All Validation functionality DISAPPEARED! Stilla Excel Worksheet Functions 3 December 11th 05 10:11 PM
List box setup, placement, and functionality Ladybug726 New Users to Excel 3 November 21st 05 03:52 AM
Autofill functionality with Validation 140mphcpa Excel Programming 2 January 22nd 05 08:10 AM


All times are GMT +1. The time now is 10:44 AM.

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

About Us

"It's about Microsoft Excel"