Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I use MSWord to create a data table, I need add prefixes into data in it (on every column), e.g:
Column 1:
32
45
65
345
7656
545
...

I want to add prefixe "-4.3" in front of data on this column to receive it the following:
Column 1 (after add prefix):
-4.332
-4.345
-4.365
-4.3345
-4.37656
-4.3545
...
How to do this. Thanks.
Posted
Updated 15-Feb-11 22:20pm
v2

1 solution

Thank you for your question, in MS Word 2007.

Use:

Insert>>Table>> Excel Spreadsheet>>
(use like excel function).
=CONCATENATE("-4.3",B1)Result is -4.332 where b1 equals to 32
=CONCATENATE("-4.3",B2)Result is -4.345 where b2 equals to 45
=CONCATENATE("-4.3",B3)Result is -4.365 where b3 equals to 65
=CONCATENATE("-4.3",B4)Result is -4.3345 where b4 equals to 345

Thanks,
Mamun
 
Share this answer
 
Comments
Andrewpeter 16-Feb-11 5:57am    
Thank you for your reply, I use MSWord 2003 so not have that function, I'll copy it to Excel to do this as your support, my vote to your answer is 5. Hope others help me more!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900