Excel can also change the case sensitivity

Source: Internet
Author: User

Friends who often use word know that they can easily change the "uppercase", "lowercase", and "uppercase" letters of the sentence in Word. However, these functions are not available in Excel, to use these functions in Excel, you must manually modify them or use complex formulas for conversion. In fact, you can write related macros to solve this problem once and for all.

First, draw the command button and change the text of the button to "all uppercase" and "all lowercase ". Right-click the button and write corresponding macros for each button.Code.

Sub all uppercase () dim itarget as rangeset itarger = selectionfor each ran in itargetran. value = ucase (RAN) nextend sub

--------------

Sub all lower case () dim itarget as rangeset itarget = selectionfor each ran in itargetran. value = lcase (RAN) nextend sub

The code for uppercase letters is too long. You can download the code at http://www.icpc#com/bzsoft. Select the target cell area and click the convert button.

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.