msg box

gueddes

New Member
Joined
Jul 6, 2017
Messages
18
Hello All
Im trying to use VBA to give me a Message box. Theres data that self populates in Column A to F. then the user has to put data into Column G through K before closing the sheet. A lot of times the user will leave out the data in Column K before closing it and column K is important for other coding. Does anyone know of a way to use VBA to make a msg box come up if : theres data in row a then a msg box shows up by k (same row) stating data required in k.

thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim rng As Range
On Error Resume Next
Set rng = Range([K1], Cells(Rows.Count, "A").End(xlUp)(1, 11)).SpecialCells(xlCellTypeBlanks)
On Error GoTo 0
If Not rng Is Nothing Then
    MsgBox "Data required in cell(s) " & rng.Address(0, 0)
    rng(1).Select
    Cancel = True
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,560
Messages
6,125,523
Members
449,236
Latest member
Afua

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top