Doesn't anyone know how to set Unicode paste as default?

rockthrowjoe

New Member
Joined
Jan 12, 2004
Messages
5
I have to copy and paste large amounts of text from a database program into Excel. If I just copy and paste it normally it separates the text into a bunch of different boxes on my Excel worksheet. So I have to do paste special everytime; which takes a lot more time. So how do I change the default Biff3 paste to Unicode so I don't have to do paste special every time? Any Excel buffs out there able to answer this one?
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Why would PasteSpecial take so much longer?

You can add certain PasteSpecial buttons to your toolbar eh, I have done so as I use them a lot.

Otherwise, you'll probably want an import sub routine.

Edit: I like Dan's advice, Macro Recorder time?
 
Upvote 0
I believe there's a couple of 'Excel buffs' who frequent this board!

I don't think you can set the default for the Paste Special but you can easily create a simple macro that will paste special as Unicode. You could also assign a shortcut key to it to make it a quick operation. Here is the code that was created when I recorded this operation:-

Code:
Sub Macro1()

    ActiveSheet.PasteSpecial Format:="Unicode Text", Link:=False, _
        DisplayAsIcon:=False
End Sub
 
Upvote 0

Forum statistics

Threads
1,203,629
Messages
6,056,418
Members
444,862
Latest member
more_resource23

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