Hi,
I get it now. Try calling this code from you button click,
Sub Copy2Sheet2()
Dim WeekNum As Double
Dim UniqueID As String
Dim TotalUnits As Double
Dim Sht2Row As Double
Dim Sht2Col As Double
Sheets("Sheet1").Select
WeekNum = Cells(2, "H").Value
UniqueID = Cells(2, "M").Text
TotalUnits = Cells(27, "M").Value
Sheets("Sheet2").Select
Sht2Col = Application.WorksheetFunction.Match(WeekNum, ActiveSheet.Range("B6:BA6"), 0)
Sht2Row = Application.WorksheetFunction.Match(UniqueID, ActiveSheet.Range("A7:A100"), 0)
ActiveSheet.Cells(Sht2Row + 6, Sht2Col + 1) = TotalUnits
End Sub
Bookmarks