views:

148

answers:

1

Hello guys
I have an excel file with field1 and field2
I want to take the first letter in field1 and concatenate it to field2 and put the result in field3
Example: Field1 = "John"
Field2 = "Doe"

I want to set the field three by some equation to be
Field3 = "JDoe"

+2  A: 

A1 = John

A2 = Doe

A3 = LEFT(A1,1) & A2

Syntax:

  • LEFT(text, number of chars from the left)
  • With '&' you can concatenate two strings
wishmesh
Thanx so much. That worked
ta.abouzeid