View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Lonnie M. Lonnie M. is offline
external usenet poster
 
Posts: 184
Default Report--anyone???

Job, using PaulD's example, this should work:

Sub Macro1()
Dim MyData As DataObject
Set MyData = New DataObject

MyData.SetText
WorksheetFunction.Sum(Selection.SpecialCells(xlCel lTypeVisible))
MyData.PutInClipboard

End Sub

HTH--Lonnie M.