I need help with two items for my project. I've searched but can only find posts about more complex questions than mine or others that I don't understand.
I'm trying to get the comments that I enter on one sheet to appear on a cleaner sheet being sheet 1. Image of what I would like to do
I would like to make an automatic email alert that sends me info from a cell to my email by a certain date and time. Here is an image of what I am trying to do
Thank you for looking!
EDIT 6/22/18
I didn't know how to add an image to the comment so adding here. @ J.Doe I tried my best changing what I could. Doesn't seem to work for me. I'm not to familiar with VBA so just took my best shot at it. I added an extra image that shows what the actual cells are and sheet names. To help make my question clearer
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("N4:N48")) Is Nothing And Target.Count = 1 Then
Dim P1 As Range: Set P1 = Sheets("Solutions").Cells(Target.Row, 1)
If Not P1.Comment Is Nothing Then
If Target.Value = "" Then
P1.Comment.Delete
Else
P1.Comment.Text Format(Target, "@")
End If
Else
P1.AddComment Format(Target, "@")
End If
End If
End Sub