English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Then what is the formula.
Secondly I want a formula to write e.g. "S Pathak,M,27" IN ONE COLUMN taking data from from four columns in anoither sheet; let us assume -A=Srinivas,B=Pathak,C=M,D=27

2006-09-21 02:14:51 · 4 answers · asked by Priti 1 in Computers & Internet Programming & Design

4 answers

Value to Words
http://www.ozgrid.com/VBA/ValueToWords.htm

— — — — — — — — — — — — — — — — — — —

The function that merges the contents from cells to one cell is CONCATENATE.

=CONCATENATE(LEFT(A1,1)," ",B1,", ",C1,", ",D1)
-or you can just do it directly in a formula without a function
=LEFT(A1,1)&" "&B1&", "&C1&", "&D1

2006-09-21 02:25:21 · answer #1 · answered by O Caçador 6 · 1 0

1. Do you mean that you want to convert number to word as in 1023 = One thousand and twenty three? If yes - there is no built-in function provided by excel to do that, however, I wrote a couple of macros a long time back to do this and I can share the code with you if you send me your workbook (I will put the code in so that when you enter a number and hit a button, the corresponding word gets printed).
you can email me at rohit.chaurasia@nsc.com

2. Concatenating different cols is easy - you can use concatenate or simply Left(Ax,1) & " " & Bx & " " & Cx & " " Dx

PS:
Left(string, n) gets n left chars from the string
x denotes the row number eg A1 or A2 or A100, where you have the values

2006-09-21 12:49:27 · answer #2 · answered by SmartSpider 4 · 0 1

The simplest way I can think of (unless this is a commonly repeated task) would be to export the table as comma separated values, then import it as one column, not as comma separated.

Rawlyn.

2006-09-21 09:19:53 · answer #3 · answered by Anonymous · 0 0

Try the function =TEXT(value,format)

When linking text use the "&" sign.

2006-09-21 09:23:33 · answer #4 · answered by Classy 7 · 0 0

fedest.com, questions and answers