Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Excel formula - request assistance

Hi,

I'm looking for a way to make a "pop-up" appear when a particular cell is
left blank.

For example,

If cell 1 in Column A is filled with the term "Collateral" (picked from
dropdown), then cell 1 in Column D must be filled. I'm looking for a formula
or macro to make this mandatory so that people filling out the spreadsheet
cannot ignore column D when that specific entry is used in column A.

Any help would b great. Tnx!
srain
  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Excel formula - request assistance

You can't make a Pop-up appear with just a formula........you need VBA for
that. What you could do is just do Conditional Formatting on the cell to
turn it Bright RED if the first cell contains "collateral" and this one is
not yet populated.

Vaya con Dios,
Chuck, CABGx3



"srain001" wrote:

Hi,

I'm looking for a way to make a "pop-up" appear when a particular cell is
left blank.

For example,

If cell 1 in Column A is filled with the term "Collateral" (picked from
dropdown), then cell 1 in Column D must be filled. I'm looking for a formula
or macro to make this mandatory so that people filling out the spreadsheet
cannot ignore column D when that specific entry is used in column A.

Any help would b great. Tnx!
srain

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Excel formula - request assistance

Hi,

Sorry, I meant either VBA or formula. How would I do either?

Thanx
Srain

"srain001" wrote:

Hi,

I'm looking for a way to make a "pop-up" appear when a particular cell is
left blank.

For example,

If cell 1 in Column A is filled with the term "Collateral" (picked from
dropdown), then cell 1 in Column D must be filled. I'm looking for a formula
or macro to make this mandatory so that people filling out the spreadsheet
cannot ignore column D when that specific entry is used in column A.

Any help would b great. Tnx!
srain

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel formula - request assistance

Here is your pop-up.

Enforcement would take much more, like locking all cells except D1 so user has
to enter something in D1 before going any further.

Option Compare Text
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo stoppit
Application.EnableEvents = False
If Me.Range("A1").Value = "Collateral" Then
MsgBox "Please be advised that D1 must be filled."
End If
stoppit:
Application.EnableEvents = True
End Sub


Gord Dibben MS Excel MVP

On Fri, 14 Dec 2007 06:32:01 -0800, srain001
wrote:

Hi,

Sorry, I meant either VBA or formula. How would I do either?

Thanx
Srain

"srain001" wrote:

Hi,

I'm looking for a way to make a "pop-up" appear when a particular cell is
left blank.

For example,

If cell 1 in Column A is filled with the term "Collateral" (picked from
dropdown), then cell 1 in Column D must be filled. I'm looking for a formula
or macro to make this mandatory so that people filling out the spreadsheet
cannot ignore column D when that specific entry is used in column A.

Any help would b great. Tnx!
srain


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
Request for assistance Lisa Excel Discussion (Misc queries) 5 October 11th 07 03:43 PM
Simplifying my Previous Request for Assistance Links and Linking in Excel 1 July 6th 06 02:07 PM
Simplifying my previous Request for Assistance Excel Worksheet Functions 1 July 6th 06 02:06 PM
Simplifying my previous Request for Assistance Excel Discussion (Misc queries) 2 July 6th 06 02:01 PM
Simplifying my previous Request for Assistance Links and Linking in Excel 0 July 5th 06 11:11 PM


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