Duplicate Pastes into a table for a draw

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I make a line of data (or maybe just a cell) paste several times
depending on a value in the row on column H?
 
If selection.rows.count = 1 then
selection.copy _
selection.Resize(cells(ActiveCell.row,"H"))
end if
 
Hi Tom,

Sorry I didn't make my request clear. I have a name in Column A, say the
data starts in A23, then in Column I i will be producing a the number of draw
entries this person would acquire, I then need to paste the Name onto a Draw
spreadsheet.

EG
Name no. of draws
Gareth Havard 3
Anon 1

To number my name on the draw sheet in columns
a b
1 Gareth Havard
2 Gareth Havard
3 Gareth Havard
4 Anon

And so on and so on until there are no more names, some will have zeros and
should not be pasted. Is this possible?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top