Skip to main content

3 Important And Useful Function "UPPER" , "LOWER" and "PROPER" Uses & Syntax In MS Excel.

How To Use "UPPER" - “LOWER" and "PROPER"  Functions in MS Excel


Function:   =UPPER(Text)
                    =LOWER(Text)
                    =PROPER(text)

Explanation: The above three functions are very useful during your work with excel sheets. Some times we have huge data base but not in proper format. In order to get data in normal or proper format we can use the above three functions. Example: Let suppose we have a list of 100 names in a report, but some names are in upper case, some are lower cases and some are lower and upper both. In order to get data in proper form we can use

A - UPPER(Text) to get the UPPER LETTER FORMAT TEXT

B - LOWER(Text) to get the lower letter format text

C - PROPER(text) to get the Proper Letter Format Text.

=UPPER(Text)  -- This function is use to get output (data) in upper case.
               (Text)  -- Text means the input value to get output or in the place of Text we can select cell reference also. To maintain huge data we normally use cell reference. You can see the below given example.

=LOWER(Text) -- The use of Lower function is to get the value in lower case. If we have data in upper case, we can use this function get the value in lower case.
                  (Text) -- The input to get the output or cell reference.

=PROPER(Text) -- This function is most effective and commonly use by the users. Proper function gives you the perfect value. Let suppose we have data in upper case or lower case and we want to change it normal text . With the help of Proper function we can do it, you can see the example below.
                   (Text) -- The input to get the output or cell reference






With the help of the above table we can easily understand the difference of all three functions. I recommended please follow the same data in your excel and start practices again and again to clear your doubts.


Please leave your comment : for more excel query.
Thanks for your time.




Comments

Popular posts from this blog

Top 10 Job Oriented Certificate Courses

Hello Friends and students. Life is very fast these days and we want some shortcut to become successful in our life. Maximum students want to get a job as soon as possible after completing their studies. Here we will suggest the top 10 job-oriented certificate courses. 1 - Project Management Professional (PMP) Certification: Globally, industries greatly value project management professional certification. It gives you the ability to manage projects successfully, including team leadership, planning, execution, and monitoring. After this course, you can handle big projects or you can assist the senior also. For All Details Click Here 2 - Certified Data Scientist: Making informed business decisions requires data science. This certification prepares you to analyze and interpret complicated data by covering statistics, machine learning, data visualization, and programming abilities. Data scientist is the most demanding course during this period. If you are good to play with huge databases a...

How To Use "LEFT" & “ RIGHT" Formulas in MS Excel.

Uses and explanation of "LEFT" & “ RIGHT Formulas. MS Excel formulas: Easiest way to understand Syntax and usage : Formula:  A: "RIGHT”     B:   “LEFT” =RIGHT(Text,[num_chars]) Explanation:    RIGHT formula is used to split the value inside the cell. In a cell we have a name like "John Abraham", but we don't need the full name, as per client requirement, we want only last name from the tab. In this case, we can use Right formula in MS Excel. Example:   Let suppose we have the name “Mark Henry” in a cell A:1. We would like to take only “Henry” from the cell. See below, how can we pull the last name by the RIGHT formula.  =RIGHT ( E9 , 6 ) You can see in the above table that we can separate Hanery name with using RIGHT formula. Name: Mark Hanery. Query:  We want to separate the last name only.  Formula = Right(E9,6)  Result: Hanery E9 is the cell reference and 6 is the number of...

How To Use Microsoft Excel Formula "CONCATENATE"

Use of  "CONCATENATE" Formula Formula :  " CONCATENATE ” In Microsoft Excel, CONCATENATE is a function, by which we can join two or more strings into a single cell. It can be used to combine text strings, numbers, or cell references, and can be useful for creating longer strings of text or for formatting data in a specific way. The syntax for the CONCATENATE function is as follows: =CONCATENATE (TEX1,TEX2, TEX3, TEX4 ................) Explanation: CONCATENATE is a very useful function in Microsoft Excel. We can join up to 30 texts together at a time. We can use CONCATENATE within the sheet, different sheets, and different workbooks. Let's suppose we have huge data with employees' names and we want to add Mr. Ms. Miss etc, before the names. It is not easy and time consuming to add Mr. or Miss. one by one. But there is a formula named CONCATENATE, could help to reduce time taking work do your work easily and very quickly. In order to understand ...