+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 21

Thread: Formula to combine text?

  1. #1
    DaveB
    Guest

    RE: Formula to combine text?

    Yep....

    =CONCATENATE(A1,B1)

    --
    Regards,

    Dave


    "coal_miner" wrote:

    > Greetings. I need a little help. Is it possible to combine text from to
    > different cells together with a formula? Example: A1 = My name B1 = is
    > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > advance for any help.


  2. #2
    coal_miner
    Guest

    RE: Formula to combine text?

    Thank you, works perfect.

    "DaveB" wrote:

    > Yep....
    >
    > =CONCATENATE(A1,B1)
    >
    > --
    > Regards,
    >
    > Dave
    >
    >
    > "coal_miner" wrote:
    >
    > > Greetings. I need a little help. Is it possible to combine text from to
    > > different cells together with a formula? Example: A1 = My name B1 = is
    > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > advance for any help.


  3. #3
    arno
    Guest

    Re: Formula to combine text?


    > Greetings. I need a little help. Is it possible to combine text

    from to
    > different cells together with a formula?

    =A1&B1

    =A1&" "&B1
    =A1&" "&B1&" Smith"
    etc. etc. etc.

    arno


  4. #4
    CLR
    Guest

    RE: Formula to combine text?

    Another way to do the same thing is

    =A1&B1

    But in either case, you need either a trailing space in A1 or a leading
    space in B1 to keep it from reading "My nameis Will"

    or, you can do it in the formula, as:

    =A1&" "&B1

    Vaya con Dios,
    Chuck, CABGx3


    "coal_miner" wrote:

    > Thank you, works perfect.
    >
    > "DaveB" wrote:
    >
    > > Yep....
    > >
    > > =CONCATENATE(A1,B1)
    > >
    > > --
    > > Regards,
    > >
    > > Dave
    > >
    > >
    > > "coal_miner" wrote:
    > >
    > > > Greetings. I need a little help. Is it possible to combine text from to
    > > > different cells together with a formula? Example: A1 = My name B1 = is
    > > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > > advance for any help.


  5. #5
    DaveB
    Guest

    RE: Formula to combine text?

    Yep....

    =CONCATENATE(A1,B1)

    --
    Regards,

    Dave


    "coal_miner" wrote:

    > Greetings. I need a little help. Is it possible to combine text from to
    > different cells together with a formula? Example: A1 = My name B1 = is
    > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > advance for any help.


  6. #6
    coal_miner
    Guest

    RE: Formula to combine text?

    Thank you, works perfect.

    "DaveB" wrote:

    > Yep....
    >
    > =CONCATENATE(A1,B1)
    >
    > --
    > Regards,
    >
    > Dave
    >
    >
    > "coal_miner" wrote:
    >
    > > Greetings. I need a little help. Is it possible to combine text from to
    > > different cells together with a formula? Example: A1 = My name B1 = is
    > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > advance for any help.


  7. #7
    arno
    Guest

    Re: Formula to combine text?


    > Greetings. I need a little help. Is it possible to combine text

    from to
    > different cells together with a formula?

    =A1&B1

    =A1&" "&B1
    =A1&" "&B1&" Smith"
    etc. etc. etc.

    arno


  8. #8
    CLR
    Guest

    RE: Formula to combine text?

    Another way to do the same thing is

    =A1&B1

    But in either case, you need either a trailing space in A1 or a leading
    space in B1 to keep it from reading "My nameis Will"

    or, you can do it in the formula, as:

    =A1&" "&B1

    Vaya con Dios,
    Chuck, CABGx3


    "coal_miner" wrote:

    > Thank you, works perfect.
    >
    > "DaveB" wrote:
    >
    > > Yep....
    > >
    > > =CONCATENATE(A1,B1)
    > >
    > > --
    > > Regards,
    > >
    > > Dave
    > >
    > >
    > > "coal_miner" wrote:
    > >
    > > > Greetings. I need a little help. Is it possible to combine text from to
    > > > different cells together with a formula? Example: A1 = My name B1 = is
    > > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > > advance for any help.


  9. #9
    DaveB
    Guest

    RE: Formula to combine text?

    Yep....

    =CONCATENATE(A1,B1)

    --
    Regards,

    Dave


    "coal_miner" wrote:

    > Greetings. I need a little help. Is it possible to combine text from to
    > different cells together with a formula? Example: A1 = My name B1 = is
    > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > advance for any help.


  10. #10
    coal_miner
    Guest

    RE: Formula to combine text?

    Thank you, works perfect.

    "DaveB" wrote:

    > Yep....
    >
    > =CONCATENATE(A1,B1)
    >
    > --
    > Regards,
    >
    > Dave
    >
    >
    > "coal_miner" wrote:
    >
    > > Greetings. I need a little help. Is it possible to combine text from to
    > > different cells together with a formula? Example: A1 = My name B1 = is
    > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > advance for any help.


  11. #11
    arno
    Guest

    Re: Formula to combine text?


    > Greetings. I need a little help. Is it possible to combine text

    from to
    > different cells together with a formula?

    =A1&B1

    =A1&" "&B1
    =A1&" "&B1&" Smith"
    etc. etc. etc.

    arno


  12. #12
    CLR
    Guest

    RE: Formula to combine text?

    Another way to do the same thing is

    =A1&B1

    But in either case, you need either a trailing space in A1 or a leading
    space in B1 to keep it from reading "My nameis Will"

    or, you can do it in the formula, as:

    =A1&" "&B1

    Vaya con Dios,
    Chuck, CABGx3


    "coal_miner" wrote:

    > Thank you, works perfect.
    >
    > "DaveB" wrote:
    >
    > > Yep....
    > >
    > > =CONCATENATE(A1,B1)
    > >
    > > --
    > > Regards,
    > >
    > > Dave
    > >
    > >
    > > "coal_miner" wrote:
    > >
    > > > Greetings. I need a little help. Is it possible to combine text from to
    > > > different cells together with a formula? Example: A1 = My name B1 = is
    > > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > > advance for any help.


  13. #13
    DaveB
    Guest

    RE: Formula to combine text?

    Yep....

    =CONCATENATE(A1,B1)

    --
    Regards,

    Dave


    "coal_miner" wrote:

    > Greetings. I need a little help. Is it possible to combine text from to
    > different cells together with a formula? Example: A1 = My name B1 = is
    > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > advance for any help.


  14. #14
    coal_miner
    Guest

    RE: Formula to combine text?

    Thank you, works perfect.

    "DaveB" wrote:

    > Yep....
    >
    > =CONCATENATE(A1,B1)
    >
    > --
    > Regards,
    >
    > Dave
    >
    >
    > "coal_miner" wrote:
    >
    > > Greetings. I need a little help. Is it possible to combine text from to
    > > different cells together with a formula? Example: A1 = My name B1 = is
    > > Will, and I want C1 to say My name is Will. Is this possible? Thanks in
    > > advance for any help.


  15. #15
    arno
    Guest

    Re: Formula to combine text?


    > Greetings. I need a little help. Is it possible to combine text

    from to
    > different cells together with a formula?

    =A1&B1

    =A1&" "&B1
    =A1&" "&B1&" Smith"
    etc. etc. etc.

    arno


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0