H
HoundofCullin
While this is not crucial, it would help quite a bit if someone can
assist me with this. First let me show you what I got:
Sub findbottom()
'
'
Sheets("Sheet2").Range("E10").Copy Destination:= _
Sheets("Sheet 1").Cells(Rows.Count, 2).End(xlUp) _
..Offset(1, 0)
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End Sub
The macro above copies cell E10 from sheet2 and pastes it into column B
in sheet 1... going down a row with each pasting. The problem I'm
having is that it actually copies the cell's format and any comments it
may contain.
What I need is for the macro to copy only the cell's value and paste it
into the other sheet's cell.
Does that make any sense? If so Your assistance would be much obliged.
Thanks
assist me with this. First let me show you what I got:
Sub findbottom()
'
'
Sheets("Sheet2").Range("E10").Copy Destination:= _
Sheets("Sheet 1").Cells(Rows.Count, 2).End(xlUp) _
..Offset(1, 0)
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End Sub
The macro above copies cell E10 from sheet2 and pastes it into column B
in sheet 1... going down a row with each pasting. The problem I'm
having is that it actually copies the cell's format and any comments it
may contain.
What I need is for the macro to copy only the cell's value and paste it
into the other sheet's cell.
Does that make any sense? If so Your assistance would be much obliged.
Thanks