Determine if clipboard object is text or image before pasting

tomleitch

Board Regular
Joined
Jan 3, 2012
Messages
189
Hi all,

Had a bit of a google but not sure if this is possible or not...

I have a sheet that imports data that is copied to the clipboard from another sheet... the other sheet data will open in protected view - so if people don't click enable editing then it copies the selection as an image and the workbook doesn't like it when it tries to import it.

It tries to paste it into my "import" sheet as an image and it makes autosave not work and causes errors.

Is there any way to determine if the clipboard content is an image or text before it is pasted into the sheet?


Thanks
Tom
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
You could perhaps use this custom function :

Code:
Function IsTextInClipBoard() As Boolean

    Dim sClipText As String
    
    On Error Resume Next
    With CreateObject("new:{1C3B4210-F441-11CE-B9EA-00AA006B1A69}")
        .GetFromClipboard
        sClipText = .GetText
        IsTextInClipBoard = sClipText <> vbNullString
    End With

End Function


Sub Test()
    MsgBox IsTextInClipBoard
End Sub
 
Last edited:
Upvote 0
Hi Jaafar

Only just seen your reply to my thread, I somehow missed it.

Thanks for your help


Cheers
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,772
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top