Home  >  Article  >  Software Tutorial  >  How to convert numbers in Excel to uppercase Chinese characters

How to convert numbers in Excel to uppercase Chinese characters

王林
王林forward
2024-01-15 10:48:19652browse

How to convert numbers in Excel to uppercase Chinese characters

This can convert the numbers in EXCEL into uppercase Chinese characters

Assume that RMB is capitalized: 71587.96 in cell B1

A1 input formula =right(b1,len(b1)-find(":",b1,1))

A2 Enter the following formula

=IF(ABS(A1)

A2 Obtained value Seventy thousand one thousand five hundred eighty seven Yuan Jiujiao Lufen

How to automatically generate uppercase letters in excel

is the amount in capital letters?

=SUBSTITUTE(SUBSTITUTE(IF(A1>-0.5%,,"negative")&TEXT(INT(FIXED(ABS(A1))),"[dbnum2]G/universal format element;;")&TEXT(RIGHT (FIXED(A1),2),"[dbnum2]0 cents 0 cents;;"&IF(ABS(A1)>1%,"whole",)),"zero cents",IF(ABS(A1)

Capital letters?

=UPPER(A1)

Capitalize numbers? Such as: 124

= NUMBERSTRING(A1,1) Effect: One hundred and twenty-four

= NUMBERSTRING(A1,2) Effect: One Hundred Twenty Four

= NUMBERSTRING(A1,3) Effect: one two four

=TEXT(A1,"[dbnum2]0") Effect: 一二四

I don’t know what kind of “capitalization” the original poster is referring to.

The above is the detailed content of How to convert numbers in Excel to uppercase Chinese characters. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:docexcel.net. If there is any infringement, please contact admin@php.cn delete