View Single Post
  #3   Report Post  
BizMark BizMark is offline
Member
 
Location: London
Posts: 78
Default

Well, let's assume that your data entry row is in Sheet1, in Row 2 (to allow headings in Row 1) and that your summary is to go in Sheet2,

You could attach a macro like this to a button next to the entry row:

Sub CopyDataRow
nInputRow = 2
nOutputRowStarts = 2

nRowsLogged = Sheet2.Cells(nOutputRowStarts,1).CurrentRegion.Row s.Count

for each xCell in Sheet1.Rows(nInputRow).Cells
Sheet2.Cells(nRowsLogged + 1,xCell.Column) = xCell.value
next xCell
End Sub