Excel Formula: How to @Mention contact

NeoSez

Board Regular
Joined
Aug 14, 2020
Messages
210
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
I want to particularly call out someone in my excel email list.
I tried
Excel Formula:
="Attention "@&($A$1)&" yada yada yada."

But when it creates the email it shows up as Attention @"&($A$1)&" yada yada yada.
It should appear as : Attention @contact yada yada yada.

By the way, this blurb above is part of another cell formula (B1) that calls on this cell (C1) above as there is a limit on how much text I can put into B1.
Can someone tell me what I did wrong?
Thank you for your input.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Maybe try

Excel Formula:
="Attention @" & ($A$1) & " yada yada yada"
Thanks mate. I already tried that and it didn't work either. I think the @ symbol throws things off. Not sure how else to automate calling out someone. Ideas?
 
Upvote 0
try =Textjoin(" ",true,"Attention","@",a1,"yada yada yada") that one thing i can think. hope it helps.
 
Upvote 0
this is what i meant top is evaluated formula bottom is the raw formala.


AAttention @ A yada yada yadaAttention @A yada yada yada
ATEXTJOIN(" ",TRUE,"Attention","@",E19,"yada yada yada")SUBSTITUTE(F19,"@ ","@")
 
Upvote 0
Thanks mate. I already tried that and it didn't work either. I think the @ symbol throws things off. Not sure how else to automate calling out someone. Ideas?
Maybe I misunderstood your request
 

Attachments

  • 2022-05-12 09_10_48-Window.png
    2022-05-12 09_10_48-Window.png
    6.8 KB · Views: 4
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,840
Members
449,096
Latest member
Erald

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