+ Reply to Thread
Results 1 to 14 of 14

Equal Sign Issue

  1. #1
    Registered User
    Join Date
    06-27-2005
    Posts
    1

    Equal Sign Issue

    Here is an issue giving me a little problem.

    If I have a xls file called data.xls with Cells B2 and B3 (B2 hold the value "[test.xls]" and B3 holds the value "ws'!$A$1").

    If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and cell B3 has ws'!$A$1,
    I get [test1.xls]ws'!$A$1. I am trying to get =[test1.xls]ws'!$A$1.
    notice the equal sign is not present on the first.

    Is this possible? Any suggestions?

    Thanks.

  2. #2
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,827
    I don't think you can create a formula in that way. I think you want the INDIRECT function =INDIRECT(B2 & B3).

  3. #3
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  4. #4
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  5. #5
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  6. #6
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  7. #7
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  8. #8
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  9. #9
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  10. #10
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  11. #11
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  12. #12
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  13. #13
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



  14. #14
    Harlan Grove
    Guest

    Re: Equal Sign Issue

    "Jedidia" wrote...>
    ....
    >If I have =B2 & B3 in cell A1, and cell B2 has [test1.xls] and
    >cell B3 has ws'!$A$1, I get [test1.xls]ws'!$A$1. I am trying
    >to get =[test1.xls]ws'!$A$1. notice the equal sign is not
    >present on the first.

    ....

    First, your formula result as-is has unbalanced single quotes. If you really
    do have ws!$A$1 in cell B3, then you need '[test1.xls] in cell B2 (note the
    initial single quote).

    All you need to do is prepend a string containing an equal sign.

    ="="&B2&B3

    and all that this formula will return is the string result

    "='[test1.xls]ws'!$A$1"

    (assuming you've added the single quote to B2).



+ 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