One way
Dim SourceRange As Range, DestRange As Range
Set SourceRange = ThisWorkbook.Worksheets("source_sheet").Range(Cells(Jour_Rw, 1), Cells(Jour_Rw, 18))
Set DestRange = wb.Worksheets("target-sheet").Cells(FCDB_Rw, 1)
'We make DestRange the same size as SourceRange and use the Value
'property to give DestRange the same values
With SourceRange
Set DestRange = DestRange.Resize(.Rows.Count, .Columns.Count)
End With
DestRange.Value = SourceRange.Value
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Dr. Schwartz" <(E-Mail Removed)> wrote in message news:0B9A9B2D-DBD4-4A05-80DD-(E-Mail Removed)...
> In Excel 2003 what do I need to change in this piece of code to only copy
> values?
>
> ThisWorkbook.Worksheets("source_sheet").Range(Cells(Jour_Rw, 1),
> Cells(Jour_Rw, 18)).copy
> Destination:=wb.Worksheets("target-sheet").Cells(FCDB_Rw, 1)
>
> An easy one I guess, but still...
>
> Thanks
> The Doctor