I want to have an annoucement on each of many sheets in my spreadsheet.

profklein

New Member
Joined
May 20, 2017
Messages
20
Allow me to explain. I am a doctoral candidate and my all my raw data will be in the "left most" sheet. I want to clean it in stages, with the data in each stage going into the next sheet. When my chairmen clicks into the sheet I want the explanation of what the stage is to pop up. I would also like him to be able to remove it by clicking some something.

(I used to be on this board some years ago - under the name of mortgemeister. I have forgotten a lot of what I learned here :( )

Gene
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
.
Code:
Option Explicit




Private Sub Worksheet_Activate()
    MsgBox "Hi"
End Sub




Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Selection.Count = 1 Then
        If Not Intersect(Target, Range("D4")) Is Nothing Then
            MsgBox "Hi"
        End If
    End If
End Sub

The top macro activates when the sheet is selected. You go from Sheet2 to Sheet1 for example. And the macro is located in the Sheet1 level module.

The bottom macro will activate if you click on Cell D4 of the sheet.

From your description it appears you want to use the top macro. Instead of it showing a Message Box, you could have the macro display a USERFORM with the description embedded
in the USERFORM. Have a CLOSE button on the USERFORM for when he has finished reading.
 
Upvote 0
Thank you Logit. I am going to use the simplier version suggested (in a different but related post) by the so called Totally Confused.
But thank you just the same.

Gene
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,770
Members
449,049
Latest member
greyangel23

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