Dashboard Mode - UPPER, LOWER, PROPER
Goal
See how text can be changed to all uppercase, all lowercase, or proper case (first letter capitalized) to clean up names and make data look neat.
See how text can be changed to all uppercase, all lowercase, or proper case (first letter capitalized) to clean up names and make data look neat.
| Original Name |
|---|
| john smith |
| MARY JONES |
| alice Johnson |
| robert BROWN |
| emily davis |
| MICHAEL CLARK |
=UPPER(A2) copied down.=LOWER(A2) copied down.=PROPER(A2) copied down.+----------------+----------------+-----------------+ | Original Names | Uppercase | Lowercase | | | Names | Names | | | | | | john smith | JOHN SMITH | john smith | | MARY JONES | MARY JONES | mary jones | | alice Johnson | ALICE JOHNSON | alice johnson | | robert BROWN | ROBERT BROWN | robert brown | | emily davis | EMILY DAVIS | emily davis | | MICHAEL CLARK | MICHAEL CLARK | michael clark | +----------------+----------------+-----------------+ +-----------------+ | Proper Case | | Names | | | | John Smith | | Mary Jones | | Alice Johnson | | Robert Brown | | Emily Davis | | Michael Clark | +-----------------+
Add a filter to select specific names or search text. When you filter the original names, the uppercase, lowercase, and proper case columns update automatically to show only the filtered names.
If you add a filter to show only names containing "john", which rows appear in the uppercase and proper case columns?