My apologies, no we are not the same person just work in the same office & mnmhenry has been assisting me - when he showed me the forum I decided to join & learn myself without bugging him all the time, again I apologise. I should have (& did) post a new thread rather than just reply to him.
Ok ALL of the code is as follows:
SITE ADDRESS DETAILS - Userform1
Private Sub CB_Next_Click()
Sheets("Data Input").Select
Range("B4").Select ' Quote Number
Selection.FormulaR1C1 = TxtBox_Quote.Text
Range("D4").Select ' Housetype
Selection.FormulaR1C1 = ComboBox_Housetype.Text
Range("G4").Select ' Sales Consultants Initials
Selection.FormulaR1C1 = ComboBox_Consultant.Text
Range("B7").Select ' Lot No.
Selection.FormulaR1C1 = TxtBox_LotNo.Text
Range("C7").Select ' SP / RP / DP
Selection.FormulaR1C1 = TxtBox_SPNo.Text
Range("D7").Select ' Site Address
Selection.FormulaR1C1 = TxtBox_SiteStreet.Text
Range("F7").Select ' Site Suburb
Selection.FormulaR1C1 = TxtBox_SiteSuburb.Text
Range("H7").Select ' Site Estate Name
Selection.FormulaR1C1 = TxtBox_SiteEstate.Text
Range("J7").Select ' Site State
Selection.FormulaR1C1 = ComboBox_SiteState.Text
Range("K7").Select ' Site Postcode
Selection.FormulaR1C1 = TxtBox_SitePostcode.Text
Range("L7").Select ' Local Authority
Selection.FormulaR1C1 = ComboBox_SiteLocalAuthority.Text
SiteAddressDetails.Hide
ClientDetails.Show
End Sub
Back Button from Userform2 to Userform1
Private Sub CB_Back_Click()
ClientDetails.Hide
SiteAddressDetails.Show
End Sub
CLIENT DETAILS USERFORM -
Userform2
Private Sub CB_Save_Click()
Unload ClientDetails
Sheets("Data Input").Select
Range("G10").Select ' Suffix 1
Selection.FormulaR1C1 = ComboBox_Suffix1.Text
Range("D10").Select ' First Name 1
Selection.FormulaR1C1 = TxtBox_Name1.Text
Range("F10").Select ' Initials 1
Selection.FormulaR1C1 = TxtBox_Initials1.Text
Range("B10").Select ' Surname 1
Selection.FormulaR1C1 = TxtBox_Surname1.Text
Range("M10").Select ' Suffix 2
Selection.FormulaR1C1 = ComboBox_Suffix2.Text
Range("J10").Select ' First Name 2
Selection.FormulaR1C1 = TxtBox_Name2.Text
Range("L10").Select ' Initials 2
Selection.FormulaR1C1 = TxtBox_Initials2.Text
Range("H10").Select ' Surname 2
Selection.FormulaR1C1 = TxtBox_Surname2.Text
Range("B13").Select ' Postal Address
Selection.FormulaR1C1 = TxtBox_PostalAddress.Text
Range("D13").Select ' Postal Suburb
Selection.FormulaR1C1 = TxtBox_PostalSuburb.Text
Range("F13").Select ' Postal State
Selection.FormulaR1C1 = ComboBox_PostalState.Text
Range("G13").Select ' Postal Postcode
Selection.FormulaR1C1 = TxtBox_PostalPostcode.Text
Range("D16").Select ' Work Number 1
Selection.FormulaR1C1 = TxtBox_WorkPhone1.Text
Range("F16").Select ' Mobile Number 1
Selection.FormulaR1C1 = TxtBox_MobilePhone1.Text
Range("L16").Select ' Email Address 1
Selection.FormulaR1C1 = TxtBox_Email1.Text
Range("H16").Select ' Work Number 2
Selection.FormulaR1C1 = TxtBox_WorkPhone2.Text
Range("J16").Select ' Mobile Number 2
Selection.FormulaR1C1 = TxtBox_MobilePhone2.Text
Range("N16").Select ' Email Address 2
Selection.FormulaR1C1 = TxtBox_Email2.Text
Range("B16").Select ' Home Phone Number
Selection.FormulaR1C1 = TxtBox_HomePhone.Text
Range("A1").Select
End Sub
Your help is greatly appreciated