Can i give Space/some other character in between the cell?

S

sumit

I have a file for Example
Ctrl+ASelect
F1Help

I want cell to look like as ctrl+A Select the next cell it should be F1
Help. is there any formula to give space.
 
S

Simon Lloyd

If you are creating the entry in a formula using cells that contain tex
then in C1: =A1 & " " & B1 this will put a space between the text of th
two cells, other than that im not sure what you mean

--
Simon Lloy

Regards
Simon Lloy
'The Code Cage' (http://www.thecodecage.com
 
S

sumit

Thanks for the reply, i want for one cell?

Example
A1 cell Ctrl+ASelect in B1 cell it should display as Ctrl+A Select
A2 cell F1Help in B1 cell it should display as F1 Help
 
S

Simon Lloyd

It would be a seperate formula for each instance as the text length i
different
=LEFT(A1,6) & " " & RIGHT(A1,6
=LEFT(A2,2) & " " & RIGHT(A2,4

--
Simon Lloy

Regards
Simon Lloy
'The Code Cage' (http://www.thecodecage.com
 
S

sumit

Hi Simon,

The formula is working fine for the two examples which you have given.Thanks
But now my problem is i am having text of different length. Is there one
formula so that i can drag the same formula for the other cells also. If
there is any formula like that would solve my problem?

Ex: Ctrl+Aselect,
Ctrl+BBoldFormat,
Ctrl+CCopyEdit,
Shift+F2Edit,
Shift+F3Paste,

Thanks any for u r help
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top