View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
John Bundy John Bundy is offline
external usenet poster
 
Posts: 772
Default Concatenate formula or &

Put this in E1
=ROUND(A1/C1,2)
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"Sam" wrote:

I am creating a text template in excel and I have the following 2
rows(combination of text, number and formula and %). please note that I
changed the format of E1 to percentage with 2 decimal.
To combine the following cells together:

A1 | B1 | C1| D1 | E1 | F1
2 | Divided by | 3 | is | =(A1/C1) | percent

i created this formula in cell A2:
=A1&B1&C1&D1&E1&F1

and i get:
2 Divided by 3 is: .666666666666 percent

and i want to get the following in one cell:
2 Divided by 3 is: 66.66% percent

what should i do?