Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Changing DATA VALIDATION box color.


Does anyone know how to change the DATA VALIDATION box color from yello
to orange or red (to make the message appear more precautionary)? An
help is appreciated. Thanks

--
gtto
-----------------------------------------------------------------------
gtton's Profile: http://www.excelforum.com/member.php...fo&userid=2472
View this thread: http://www.excelforum.com/showthread.php?threadid=38693

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default Changing DATA VALIDATION box color.

This worked for me using Excel 2000

I put this code in the worksheet module
DataValidation cell is B13
set your own conditions...

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$13" Then
If Target < 12 Then
Target.Interior.ColorIndex = 44
ElseIf Target = 12 Then
Target.Interior.ColorIndex = xlNone
End If
End If
End Sub


--
steveB

Remove "AYN" from email to respond
"gtton" wrote in
message ...

Does anyone know how to change the DATA VALIDATION box color from yellow
to orange or red (to make the message appear more precautionary)? Any
help is appreciated. Thanks.


--
gtton
------------------------------------------------------------------------
gtton's Profile:
http://www.excelforum.com/member.php...o&userid=24721
View this thread: http://www.excelforum.com/showthread...hreadid=386933



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,979
Default Changing DATA VALIDATION box color.

The data validation input message appearance is controlled by your
Tooltip settings. To change the font type or colour, or background colour:

(Instructions for Windows XP)
Note: this will also affect ToolTips and Comments

Right-click on the desktop, and choose Properties
On the Appearance tab, click Advanced.
From the Item dropdown, choose Tooltip
Choose a font, font colour, and/or background colour
Click OK, click OK

As an alternative, if you can use programming, you could use a textbox
to display the input message. There's an example he

http://www.contextures.com/excelfiles.html

Under Data Validation, look for 'Input Message in Textbox'


gtton wrote:
Does anyone know how to change the DATA VALIDATION box color from yellow
to orange or red (to make the message appear more precautionary)? Any
help is appreciated. Thanks.




--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

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 Arrow Color morjayne Excel Worksheet Functions 2 April 16th 08 08:43 PM
Changing Fill Color When Data is Entered Julia1727 Excel Discussion (Misc queries) 1 January 23rd 08 02:10 AM
Data Validation with Changing Values Steven M. Britton Excel Discussion (Misc queries) 2 January 5th 07 07:40 PM
Data Validation - Multiple Places Changing lee Excel Discussion (Misc queries) 1 September 29th 06 05:49 AM
in a data validation list how do i color a choice? Sam Excel Discussion (Misc queries) 6 July 13th 06 02:14 AM


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