> Thanks!
> It does work!
> But I don't get it why it changes the values in the C-column when you
> run it more than once... If you could run it more than once, without
> messing up values, I could put it in the original macro so it does
> everything with one click.
I kept trying and added the following part to my original macro:
i = 3
Do Until Range(Cells(i, 3), Cells(i, 3)) = ""
Range(Cells(i, 2), Cells(i, 2)).Value = Range(Cells(i - 1, 2),
Cells(i - 1, 2)).Value
i = i + 1
Loop
Sheets("grafiek").Select
It now fills in the empty cells when they are firts created!
Thanks for all the help!