In my Excel 2016 project (Windows 7), I\'d like to work with the clipboard:
Dim DataObj As New MSForms.DataObject DataObj.GetFromClipboard
Bu
Maybe you can try a late binding using the CLSID
Dim MyDataObj As Object Set MyDataObj = CreateObject("New:{1C3B4210-F441-11CE-B9EA-00AA006B1A69}")
or something like that.