Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default data validation based on cell value

Hello......I hope you can help....thanks in advance!

I would like to have an error message pop up if the result of a formula in
cell N100 is greater than 5. I tried using the data validation and "custom"
selection but could not get it to work. Is this possible?

thanks,
Jeff
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default data validation based on cell value

Data validation only imposes constraints on what the user can type
into a cell. It has nothing to do with calculated values. The closest
you can get is to use Conditional Formatting to change the color of a
cell based on some criteria.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 10 Nov 2008 10:17:01 -0800, jpzachar
wrote:

Hello......I hope you can help....thanks in advance!

I would like to have an error message pop up if the result of a formula in
cell N100 is greater than 5. I tried using the data validation and "custom"
selection but could not get it to work. Is this possible?

thanks,
Jeff

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default data validation based on cell value

Can you make use of a VBA solution? Assuming the cells that N100's formula
is dependent on are all located on the same worksheet as N100, right click
the tab at the bottom of that worksheet and select View Code from the popup
menu that appears; then copy/paste the following code into the code window
that appears...

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("N100"), Target.Dependents) Is Nothing Then
If Target.Dependents.Value 5 Then MsgBox "Cell N100 is too big!"
End If
End Sub

I'm not sure, off the top of my head, whether this can be extended to N100
dependencies located on other worksheets. If that is your situation, let us
know so we can investigate whether a solution can be found or not.

--
Rick (MVP - Excel)


"jpzachar" wrote in message
...
Hello......I hope you can help....thanks in advance!

I would like to have an error message pop up if the result of a formula in
cell N100 is greater than 5. I tried using the data validation and
"custom"
selection but could not get it to work. Is this possible?

thanks,
Jeff


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
Hide/Show Rows based on Cell Value with Data Validation Shelly Excel Programming 3 January 4th 08 11:01 PM
Data Validation based on data to left but several columns dependen MarvInBoise Excel Programming 3 June 20th 07 12:59 AM
Creating a Data Validation List based on a Value in another cell LondonLion Excel Worksheet Functions 2 June 8th 07 12:23 AM
data validation to restrict input in cell based on value of cell above that cell NC Excel Programming 2 January 25th 05 07:11 AM
Sorting data based on validation cell JanetP[_2_] Excel Programming 1 January 7th 04 05:39 PM


All times are GMT +1. The time now is 07:10 PM.

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"