Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I have a vba that allows me to copy stuff from a source to 2nd sheet. But when I use it, it's copying the formula in the source box, not th actual displayed text. How can I correct this? Sub Network() Dim WS As Worksheet Dim sourceRng As Range, destRng As Range Set sourceRng = Range("AL6") Set WS = Workbooks("Processed Exceptions.xls").Sheets("Processe Exceptions") Set destRng = WS.Cells(Rows.Count, "D").End(xlUp)(2) sourceRng.Copy destRng End Su -- Message posted from http://www.ExcelForum.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try the pastespecial command
"tiptop " wrote in message ... Hello, I have a vba that allows me to copy stuff from a source to 2nd sheet. But when I use it, it's copying the formula in the source box, not the actual displayed text. How can I correct this? Sub Network() Dim WS As Worksheet Dim sourceRng As Range, destRng As Range Set sourceRng = Range("AL6") Set WS = Workbooks("Processed Exceptions.xls").Sheets("Processed Exceptions") Set destRng = WS.Cells(Rows.Count, "D").End(xlUp)(2) sourceRng.Copy destRng End Sub --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Update a autofilter sheet from another sheet | Excel Discussion (Misc queries) | |||
update daily sheet | Excel Worksheet Functions | |||
Update from different sheet | Excel Discussion (Misc queries) | |||
insert query into excell sheet to update excell sheet and pivot table | Excel Discussion (Misc queries) | |||
update sheet on the web | Excel Discussion (Misc queries) |