Take full name from one worksheet, make appear as first name last initial in another

CaptQuay

New Member
Joined
Feb 17, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I am trying to create a workbook, with multiple worksheets, on my daily report worksheet I need several things:
1st: Have first name and last initial (John S), but on the individual worksheets we have the full name displayed (John Smith) . I know when it is on the same sheet, I can use the =LEFT(AG2,FIND(" ",AG2)+1), but what is the formula to bring from another sheet. I used to use the ='sheet#'!$A$2 to bring the full name across.
2nd: Any of the other info I bring across, if no data I get a "0", how can I have a blank from one page to leave blank on another.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You only need the apostrophe if the sheet name has a space in it.

Try:
Book1
AGAH
1
2John SmithJohn S
3John 
Sheet4
Cell Formulas
RangeFormula
AH2:AH3AH2=IFERROR(LEFT(Sheet4!AG2,FIND(" ",Sheet4!AG2)+1),"")


For the 0 Values:
Excel Formula:
=IF(Formula= 0, "", Formula)
 
Upvote 0

Forum statistics

Threads
1,215,077
Messages
6,122,992
Members
449,094
Latest member
masterms

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