Hey all,

Really hoping someone can assist.

Basically I am running a spreadsheet to collate date through a variety of user forms. Now I have the challenge of adding to a pre-existing row using a unique value (in column A)

Specifically I am compiling a note, 25 columns across from a unique reference in my "Master" sheet within column A and then moving along one row at a time to add data. However I'm struggling to get going with this one.

Sheets("Master").Select
Range("A1").Select
If ActiveCell.Value = "" Then
Application.WorksheetFunction.Match(TextBox9.Value, Worksheets(1).Range("A4:A60000"), 0)
ActiveCell.Offset(0, 25).Select
ActiveCell.Value = TextBox4

Any help would be greatly appreciated

Thanks
Michael