Thanks.
You were correct <g>. The formulae result from a programmatic
paste into the range in question.
It's obviously not the correct ng, but I guess I had better stick to this
thread.
I'm moving data with code, and then returning control to the user, so
that they can use their required formula on the range. I therefore need
to move values only.
Here's an example of the type of code I have used:
Workbooks(wkbkname).Sheets("SUMMARY").Activate
.Range("B65536").End(xlUp).Offset(0, 7).Resize(1, 3).Copy _
Destination:=Workbooks(ExcludeBook). _
Sheets("GENERAL SUMMARY").Range _
(TargetAddress).Offset(2, 7)
Can this be amended easily, or do I need to find another way to
achieve the copy/paste, please?
Regards.
Frank Kabel said:
Hi
if the cells are really empty the SUM formula should work without any
problems. Are there formulas in the cells A2:A60?