VBA code for simplified traditional translation of Excel

Source: Internet
Author: User

In Excel, there is no conversion between simplified and traditional text.

But word has this feature, so we can call the traditional and simplified features of Word in Excel by using VBA code to realize the functionality of simplified traditional translation in Excel.

Here is the VBA code associated with this, and I hope it will help you.

Sub Jfzh ()

Dim WD as Word.Application

Set WD = New Word.Application

With WD. Documents.Add. Sections (1). Range.Text = Sheet1.cells (1, 1). Text '. Sections (1). Range.Select ' WD. Wordbasic.toolssctctranslate direction:=0, varients:=0, translatecommon:=0

Wd. Wordbasic.toolstcsctranslate direction:=0, varients:=0, translatecommon:=0 ' traditional simplified

Sheet1.cells (1, 1) =. Sections (1). Range.Text. Close False ' simplified to traditional

End With WD. Quit

Set WD = Nothing End Sub

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.