Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default Displaying drop down list arrows

Dear all,
I'm having a workbook in which I used "Data Validation List" in all the
sheets of workbok.
Unfortunately in one sheet, drop down list arrows are not displaying
although the list is still in the cell.
I checked with contexture website and also I searched in google and tried
with all the guidelines given by them but still it is not working.
I'm still wondering how this drop down arrow is not appearing in one
particular sheet of workbook. All the other worksheets of the same workbook
are showing drop down arrows.
Please help me to sort out this problem.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Displaying drop down list arrows


Click a cell that has the validation in it, go to DataValidation you
should see a checkbox called In-Cell Dropdown make sure its checked,
failing that rename your worksheet, create another with the name of the
original copy the values and formulae over then re-apply your
validation.


--
The Code Cage Team

Regards,
The Code Cage Team
www.thecodecage.com
------------------------------------------------------------------------
The Code Cage Team's Profile: http://www.thecodecage.com/forumz/member.php?userid=2
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=7264

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Displaying drop down list arrows

Try running this on the worksheet in question

Sub SetInCellDropdown()
Dim r As Range
Dim myTest As Boolean


For Each r In ActiveSheet.UsedRange
myTest = True
On Error Resume Next
myTest = r.Validation.InCellDropdown
On Error GoTo 0
If myTest = False Then
r.Validation.InCellDropdown = True
End If
Next r
End Sub

This assumes that there are entries on the sheet before and after the data
validation.


--
HTH,
Barb Reinhardt

If this post was helpful to you, please click YES below.



"Premanand Sethuraman" wrote:

Dear all,
I'm having a workbook in which I used "Data Validation List" in all the
sheets of workbok.
Unfortunately in one sheet, drop down list arrows are not displaying
although the list is still in the cell.
I checked with contexture website and also I searched in google and tried
with all the guidelines given by them but still it is not working.
I'm still wondering how this drop down arrow is not appearing in one
particular sheet of workbook. All the other worksheets of the same workbook
are showing drop down arrows.
Please help me to sort out this problem.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Displaying drop down list arrows

Ive had the same problem within the workbook (not only single sheet) which
has caused some grief. Ive had to revert to the VB editor section under
Developer-VB Editor.
Under the 'Microsoft Excel Objects' section select 'This workbook'. The
variable 'DisplayDrawingObjects' was showing '3 - xlHide'; this needed to be
changed to '-4104 - xlDisplayShapes'.

Not sure how this may have got changed!!!

Cheers

"Barb Reinhardt" wrote:

Try running this on the worksheet in question

Sub SetInCellDropdown()
Dim r As Range
Dim myTest As Boolean


For Each r In ActiveSheet.UsedRange
myTest = True
On Error Resume Next
myTest = r.Validation.InCellDropdown
On Error GoTo 0
If myTest = False Then
r.Validation.InCellDropdown = True
End If
Next r
End Sub

This assumes that there are entries on the sheet before and after the data
validation.


--
HTH,
Barb Reinhardt

If this post was helpful to you, please click YES below.



"Premanand Sethuraman" wrote:

Dear all,
I'm having a workbook in which I used "Data Validation List" in all the
sheets of workbok.
Unfortunately in one sheet, drop down list arrows are not displaying
although the list is still in the cell.
I checked with contexture website and also I searched in google and tried
with all the guidelines given by them but still it is not working.
I'm still wondering how this drop down arrow is not appearing in one
particular sheet of workbook. All the other worksheets of the same workbook
are showing drop down arrows.
Please help me to sort out this problem.

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
Displaying Drop down list items based on selection of another colu myssieh Excel Discussion (Misc queries) 3 February 18th 08 02:15 PM
BUG? : data validation in-cell drop down list is not displaying Patachoup Excel Discussion (Misc queries) 9 May 17th 07 07:51 AM
DROP DOWN ARROWS Dale M Excel Discussion (Misc queries) 0 March 21st 06 03:24 PM
Drop down lists are displaying end of list, how to make it top? LynnSouthan Excel Worksheet Functions 3 June 22nd 05 08:52 PM
Getting rid of drop down arrows jayceejay New Users to Excel 3 December 8th 04 09:01 PM


All times are GMT +1. The time now is 04:22 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"