Open Side Menu Go to the Top
Register
excel question excel question

04-10-2017 , 05:47 AM
When I copy and paste how would I go about combining the columns together, for example in the first picture the first column displays name SHOWTIME, second column number 21, and next column displays 57k




But how would I combine them together instead so they display all the values in the same column like this?

excel question Quote
04-10-2017 , 09:30 AM
Assume SHOWTIME = cell I1

Put a formula

=I1&J1&K1

If you want spaces in between
=I1&" "&J1&" "&K1

Also

=Concatenate(I1,J1,K1)

would work
excel question Quote
04-10-2017 , 10:13 AM
10 to 1 this is a spam set up.
excel question Quote
04-10-2017 , 12:15 PM
Thanks guys, much appreciated!! and nah no spam.

Say If I went to add brackets around the number or word how would I do that? for example adding brackets around the number 21 etc like in pic below.

excel question Quote
04-10-2017 , 01:54 PM
Quote:
Originally Posted by I bet
Thanks guys, much appreciated!! and nah no spam.

Say If I went to add brackets around the number or word how would I do that? for example adding brackets around the number 21 etc like in pic below.

Just add strings to your concatenate:

=Concatenate("[",I1,J1,K1,"]")
excel question Quote
04-11-2017 , 02:24 AM
Quote:
Originally Posted by kerowo
10 to 1 this is a spam set up.
Well, he took the time to make up a good alias, not sp4mb0t5734, for example
excel question Quote
04-11-2017 , 03:23 AM



=(I1&" ("&J1&") "&K1)


TY guys
excel question Quote
04-20-2017 , 09:44 PM
Quote:
Originally Posted by Jeremy517
Just add strings to your concatenate:

=Concatenate("[",I1,J1,K1,"]")
i need to learn advanced formulae like the above..... oops, maybe it's not as advanced as i thought......... but i'm thinking arrays and things like summing a column when it includes a bunch of error cells. basic summing gives you an error.
excel question Quote
04-20-2017 , 09:50 PM
not sure it relates directly to your question.......... but i've needed to use TEXT and STRING functions sometimes. converting numbers to text and vice-versa. or at least getting excel to recognize something as a number when you've scraped it from a website.
excel question Quote

      
m