+ Reply to Thread
Results 1 to 25 of 25

Formula to combine text?

Hybrid View

  1. #1
    coal_miner
    Guest

    Formula to combine text?

    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
    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.


  3. #3
    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.


  4. #4
    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.


  5. #5
    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.


  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
    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.


  8. #8
    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.


  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
    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.


  11. #11
    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.


  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
    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.


  14. #14
    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.


  15. #15
    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.


  16. #16
    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.


  17. #17
    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.


  18. #18
    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.


  19. #19
    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


  20. #20
    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


  21. #21
    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


  22. #22
    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


  23. #23
    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


  24. #24
    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.


  25. #25
    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.6.0 RC 1