concanate formula

H

hafiza

what is wrong with my formula?

=concatenate(mid(a1, 75), "092008", mid(a1, 82, 149))

anyone can help.........
 
S

Shane Devenshire

Hi,

The MID function needs 3 arguments.

Also you might write this as

=MID(a1,75,4)&"092008"&MID(a1, 82, 149)

Cheers,
Shane Devenhire
 
H

hafiza

Thanks alot :)

I manage to get it right :)

Shane Devenshire said:
Hi,

The MID function needs 3 arguments.

Also you might write this as

=MID(a1,75,4)&"092008"&MID(a1, 82, 149)

Cheers,
Shane Devenhire
 
Top