Word seems to refuse and I can only make it copy by using F5
Sub Macro1()
Selection.WholeStory
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:= _
wdInLine, DisplayAsIcon:=False
Selection.WholeStory
Selection.Range.Case = wdUpperCase
Selection.Copy
End Sub
Excel fails on the magic instructions put in clipboard
Sub CommandButton7_Click()
Set fred = New DataObject
Sheets("Sheet2").Select
' Sheets("Sheet2").Range("A1").Paste
ActiveSheet.Paste
Sheets("Sheet2").Range("A1").Value = UCase(Sheets("Sheet2").Range("A1").Value)
Application.CutCopyMode = False
Sheets("donelist").Select
fred = Sheets("SHEET2").Range("A1").Value
fred.PutInClipboard SetText
End Sub
Sub Macro1()
Selection.WholeStory
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:= _
wdInLine, DisplayAsIcon:=False
Selection.WholeStory
Selection.Range.Case = wdUpperCase
Selection.Copy
End Sub
Excel fails on the magic instructions put in clipboard
Sub CommandButton7_Click()
Set fred = New DataObject
Sheets("Sheet2").Select
' Sheets("Sheet2").Range("A1").Paste
ActiveSheet.Paste
Sheets("Sheet2").Range("A1").Value = UCase(Sheets("Sheet2").Range("A1").Value)
Application.CutCopyMode = False
Sheets("donelist").Select
fred = Sheets("SHEET2").Range("A1").Value
fred.PutInClipboard SetText
End Sub