Looking for a way to achieve the following. Imagine I have 2 columns
A | B
---------------
NAME | SURNAME
---------------
Ned | Stark
Arya | Stark
Sansa| Bolton
I would like column C to contain the following: "The next to die will be NAME Surname. Cheers!"
so to achieve this I would make a formula like
=concatenate(The next to die will be,A2,' ',B2,'. Cheers!')
and then pull it down all my Rows
but this is a trivial example. sometimes I might have more than 20 columns, and the resulting string is way more complex. There must be a nicer way to do this? I am thinking like an equivilant to the c# function "Format" e.g.
=Format('The next to die will be {0} {1}. Cheers!',A2,B2)
Any suggestions?