✔ 最佳答案
If you have to forces the alphabet change to be upper case when entering, you have to use Excel VBA code to do so.
Otherwise you can convert the text to upper case by using Excel function UPPER in other column.
Let your Data in cells A1 is “abc”, then in cells B1 you can input
=UPPER (A1)
the answer will then turn to be “ABC”.