Home > Software design >  Fill cell based on another in Excel
Fill cell based on another in Excel

Time:05-03

I would like to fill in a cell according to what I filled in another.
EX:

enter image description here

CodePudding user response:

Concatenate the string using &

="HELLO "&A2&"!"

CodePudding user response:

You have two options 1) using & symbol ="HELLO "&A1&"!" or 2) using CONCAT function =CONCAT("HELLO ", A2, "!") both methods work the same so whatever is easier for you.

  • Related