Ok, thank you this is what I have.
Private Sub FormButton1_Click()
UserForm1.Show
End Sub
Private Sub Worksheet_Activate()
If UserForm1.Visible = True Then
userform_data
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If UserForm1.Visible = True Then
userform_data
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If UserForm1.Visible = True Then
userform_data
End If
End Sub
Module is
Sub userform_data()
UserForm1.mfg.Value = Range("C" & ActiveCell.Row).Value
UserForm1.qty.Value = Range("D" & ActiveCell.Row).Value
UserForm1.part.Value = Range("E" & ActiveCell.Row).Value
UserForm1.Description.Value = Range("F" & ActiveCell.Row).Value
UserForm1.vendor.Value = Range("G" & ActiveCell.Row).Value
UserForm1.po.Value = Range("H" & ActiveCell.Row).Value
UserForm1.poDate.Value = Range("I" & ActiveCell.Row).Value
UserForm1.ngCost.Value = Range("J" & ActiveCell.Row).Text
UserForm1.ngTotal.Caption = Range("K" & ActiveCell.Row).Text
UserForm1.custCost.Caption = Range("L" & ActiveCell.Row).Text
UserForm1.custTotal.Caption = Range("M" & ActiveCell.Row).Text
End Sub
Which seems to work good, But what do I need to do to also make it change the cell value If they change the data on the form.?
Bookmarks