Can't Get Formula To Work

rcough

New Member
Joined
Aug 18, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I'm trying to get a formula to work but really struggling.
What i need is a formula for a cell to auto populate with text based on a letter in another cell.

For Example, if Cell B3 reads Rob then Cell E3 populates with Robert, but if cell B3 reads Sam then E3 populates with Sammy also if B3 reads Will then cell E5 would populate with William.

I have looked online and tried to get the formula to work but keep getting a error on it and its starting to frustrate me, Hopefully this is possible. I'm guessing i may need to change it to a Vlookup, but the cell only has 3 outputs so hoping an IF or IFS formula would work.

Thanks for any help.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Maybe (3 alternatives)
Book1
BCDE
3samSammy
4willWilliam
5RobRobert
Sheet4
Cell Formulas
RangeFormula
E3E3=IFERROR(LOOKUP(B3,{"Rob","Robert";"Sam","Sammy";"Will","William"}),"")
E4E4=IFERROR(VLOOKUP(B4,{"Rob","Robert";"Sam","Sammy";"Will","William"},2,1),"")
E5E5=SWITCH(B5,"Rob","Robert","Sam","Sammy","Will","William","")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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