I want to accomplish the following:
string = TEST; cell reference = B2, value = ING; RESULT = TESTING
Which of the following options are the best to use:
- CONCAT:
=CONCAT("TEST",B2) - & operator:
="TEST" & B2 - CONCATENATE:
=CONCATENATE("TEST", B2)
|
I want to accomplish the following:
Which of the following options are the best to use:
|
||||
|
|
|
CONCATENATE() can also be used to join 2 items, however it's typically used to join greater than 2 terms. Which one is best? I'd say whichever option makes the formula the most readable, in this case I would say |
|||
|