Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 53
Default VBA help - error message to user

Hi all! I need help with programming a macro. Currently, I have a
macro which when I run it, grabs data from certain cells and copies
and pastes it in another worksheet. That is working well, so no
problems there. However, I need to add another element to this macro.

In cell B2, I have a drop down list containing 4 values: "C", "X",
"A", and "T". If the user selects "X", then (s)he must also fill in
cells E1, E2, and E3 with pertinent info. If the macro is run, and
those cells are blank (given that B2 is "X"), I want an error message
to pop up saying "Can't export data unless cells E1, E2, and E3 are
filled in."
This would essentially halt the macro and the user has to fill in the
data, and re-run again. If any other value (other than "X") is chosen
in cell B2, the macro runs successfully.

Can anyone please help?

Thank you all in advance!

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default VBA help - error message to user

How about something like this:

Dim Match as boolean
DIm i as long

Match = TRUE

for i = 1 to 3
if isempty(cells(i,"E")) then
MATCH = FALSE
exit for
end if
next i

if not MATCH then
msgbox("Can't export data unless cells E1, E2, and E3 are filled in.")
end if

HTH,
Barb Reinhardt
" wrote:

Hi all! I need help with programming a macro. Currently, I have a
macro which when I run it, grabs data from certain cells and copies
and pastes it in another worksheet. That is working well, so no
problems there. However, I need to add another element to this macro.

In cell B2, I have a drop down list containing 4 values: "C", "X",
"A", and "T". If the user selects "X", then (s)he must also fill in
cells E1, E2, and E3 with pertinent info. If the macro is run, and
those cells are blank (given that B2 is "X"), I want an error message
to pop up saying "Can't export data unless cells E1, E2, and E3 are
filled in."
This would essentially halt the macro and the user has to fill in the
data, and re-run again. If any other value (other than "X") is chosen
in cell B2, the macro runs successfully.

Can anyone please help?

Thank you all in advance!


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 812
Default VBA help - error message to user

Sub Macro1() ' or whatever name it is
Dim bTest As Boolean
bTest = FailTest
If bTest = True Then Exit Sub
' rest of code
End Sub

Private Function FailTest() As Boolean
If Range("B2") = "X" Then
If IsEmpty(Range("E1")) Or IsEmpty(Range("E2")) Or _
IsEmpty(Range("E3")) Then
MsgBox "Can't export data unless cells E1, E2, and E3 are
filled in."
FailTest = True
Else
FailTest = False
End If
End If
End Function

Hth,
Merjet


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 53
Default VBA help - error message to user

On May 14, 5:57 pm, merjet wrote:
Sub Macro1() ' or whatever name it is
Dim bTest As Boolean
bTest = FailTest
If bTest = True Then Exit Sub
' rest of code
End Sub

Private Function FailTest() As Boolean
If Range("B2") = "X" Then
If IsEmpty(Range("E1")) Or IsEmpty(Range("E2")) Or _
IsEmpty(Range("E3")) Then
MsgBox "Can't export data unless cells E1, E2, and E3 are
filled in."
FailTest = True
Else
FailTest = False
End If
End If
End Function

Hth,
Merjet


Thank you Merjet...this worked. You saved the day yet again!

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
Error Message if user leaves a field blank GillianX Excel Worksheet Functions 1 October 14th 08 05:40 PM
replace VBA run-time error message with custom message BEEJAY Excel Programming 13 July 14th 06 03:59 PM
changing the message in an error message The Villages DA Excel Worksheet Functions 2 February 18th 05 05:30 PM
Displaying a message in a message box without requiring user to click anything to proceed Android[_2_] Excel Programming 2 June 25th 04 06:44 PM
Asking user to print and error message Olly[_3_] Excel Programming 1 November 17th 03 01:18 PM


All times are GMT +1. The time now is 05:42 PM.

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"