View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Boris[_3_] Boris[_3_] is offline
external usenet poster
 
Posts: 12
Default Excel show value not formula

On Fri, 19 Oct 2007 09:32:01 -0700, datamia wrote:

Problem #1: I am trying to concatenate using text in "" and cells. My cells
are formatted to text because I need to keep 0's in front of numbers in my
cells. The result is showing the formula and not the value. How can I get the
value? Ctrl+ ` doesn't work:

=CONCATENATE("[AMST.FIPS_STATE] LIKE "",E1,""")

Problem #2: You might have noticed lots of "s. In my concatenate result, I
need to have quotes, for example, the result should look like this:
[AMST.FIPS_STATE] LIKE "06". The quotes needed in my result are confusing the
formula.


You are missing a few quotes here...
How about this:

="[AMST.FIPS_STATE] LIKE """ & TEXT(E1,"00") & """"

Regards,

B.