Seahorse
Member
I am using CONCATENATE to generate 3 columns of information in a bar chart axis as this seems to be the only way to have more than the axis title.
I am combining the:
=CONCATENATE(B2," │ ",C2," │ ",(TEXT(E2,"dd mmm yy")))
resulting in:
Discovery │ Bill │ 15 May 14
I can control the date length using formatting to make the date 'column' E2 the same length, however the Owner in C2 is variable and I want to use 15 characters (even if the text is shorter than 15 characters) to make the vertical bars align making it easier to read.
Whilst I can happily use =LEFT(C2,15) on its own, I am struggling to shoehorn it into the formula:
=CONCATENATE(B2," │ ",(LEFT(C2,15)," │ ",(TEXT(E2,"dd mmm yy")))
I have the right number of brackets, the commas look ok, any idea where I am going wrong?
I am combining the:
- Task
- Owner
- Basline (date)
=CONCATENATE(B2," │ ",C2," │ ",(TEXT(E2,"dd mmm yy")))
resulting in:
Discovery │ Bill │ 15 May 14
I can control the date length using formatting to make the date 'column' E2 the same length, however the Owner in C2 is variable and I want to use 15 characters (even if the text is shorter than 15 characters) to make the vertical bars align making it easier to read.
Whilst I can happily use =LEFT(C2,15) on its own, I am struggling to shoehorn it into the formula:
=CONCATENATE(B2," │ ",(LEFT(C2,15)," │ ",(TEXT(E2,"dd mmm yy")))
I have the right number of brackets, the commas look ok, any idea where I am going wrong?