Reputation: 4217
I have 2 columns in excel:
InsertDate, FeedbackId
I want to concatenate these two columns by separating them with a comma. I have written this formula:-=concatenate(B212,"---", C212) but the problem is it is converting the date to some integer i.e.
InsertDate=05-Jun-2017 and FeedbackId=1,
The output is "42891,1" which I want to be "05-Jun-2017,1"
Upvotes: 0
Views: 58
Reputation: 84465
try the following use TEXT to convert to a string for concatenation
=CONCATENATE(TEXT(InsertDate,"dd-mmm-yyyy"),",",FeedbackID)
Upvotes: 1