Sorry guys I have to raise this old chestnut
I have a data feed that overwrites my column titles, so my pivot table goes awkward.
All I am trying to do is ensure that Cell "C24" on worksheet "Data"
always has the value "Product" in it. also various other cells that I can populate once ive see what I'm doing wrong.
I have tried
but that don't work.
I have a data feed that overwrites my column titles, so my pivot table goes awkward.
All I am trying to do is ensure that Cell "C24" on worksheet "Data"
always has the value "Product" in it. also various other cells that I can populate once ive see what I'm doing wrong.
I have tried
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("C24").Select = "" Then _
Range("C24") = "Product"
End Sub
but that don't work.