Hi all
I have some numbers, for example, number, confidence interval low, confidence interval high
County N CI-Lower CI-Upper
Albany 1234 1228 1240
These raw numbers don’t have comma as thousand separator, but I used cell format them so they do. Now they -look- like this.
County N CI-Lower CI-Upper
Albany 1,234 1,228 1,240
I want to make another column of -text- combining all three, but showing the comma, so I’d get this column:
1,234 (1,228 - 1,240)
For some reason when I use concatenate, the comma doesn’t show up.
=CONCAT(C3," (",E3," - “,F3,”)")
I just get the numbers without the commas.
I presume I have to somehow get the raw numbers to have a comma in them, without using cell formatting but I’m not sure how to do this.
Any help would be greatly appreciated.
Thanks
Gene