October 2007
M T W T F S S
« Aug   Nov »
1234567
891011121314
15161718192021
22232425262728
293031  

Archives

Archive for October, 2007

Fill in empty cells

( General )

You know the score, you've done a pivot table and there are a load of empty cells. You want to fill them up:
[NB: you have to copy the PT as values or the code will fail!]
I use this almost every day:

Sub fill_in()
Dim cell As Object
    Application.ScreenUpdating = False
    For Each cell In Selection
  [...]