I am trying to concatenate 3 fields together but some of the fields have leading 0's. Does anyone know of a way to use this formula and still be successful?
feedback
|
closed as not a real question by studiohack♦ Feb 8 at 15:56
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
You lose formatting when you concatenate so if, for example, A1 has the number 12 but is formatted to show 0012 then when you concatenate you lose the formatting, e.g. with "text" in B1 =A1&" "&B1 gives 12 text If you want it to be 0012 text then use TEXT function in the concatenation, something like this
| |||
feedback
|