Formula for Capitalization

Beh162

Board Regular
Joined
Jan 15, 2015
Messages
130
A1Bob(B1)
Mary (B2)
Nina
NINA (A4)

<tbody>
</tbody>

I'm wondering if there is a formula that is available that will search B1:B3 and if it matches A4 (NINA) it will then anything in Column B that matches to uppercase or to mirror A4.

So I'd want it to then change it to look like this:
A1Bob(B1)
Mary
NINA
NINA (A4)

<tbody>
</tbody>

<tbody>
</tbody>


I know it seems odd, but rather than having to manually type the matches, I was wondering what formula's may be available.
 
Last edited:

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try doing a vlookup....If there is a hit then we will now capitalize it.... if not then it says "No Match"

Code:
=IF(ISERROR(VLOOKUP(A4,B1:B3,1,FALSE)),"No Match",UPPER(VLOOKUP(A4,B1:B3,1,FALSE)))
 
Upvote 0

Forum statistics

Threads
1,215,682
Messages
6,126,195
Members
449,298
Latest member
Jest

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top