I have a simple Excel spreadsheet with a single row and 4 columns. I'm trying to concatenate 3 cells in the row together using a range instead of specifying all 3 cells explicitly (for times where I need to concatenate several cells).
The data is as follows:
[A1] 5
[B1] 6
[C1] 7
[D1] =CONCATENATE(A1:C1)
The result I get in D1 is #VALUE instead of what I'm looking for, which would be 567.
Is there a way to accomplish this using a range?