Hi forum expert,
Run the following code;
![]()
Sub Makro1() Range("A1").FormulaR1C1 = "Best" & Chr(10) & "Excel" & Chr(10) & "Forum" End Sub
How can I make A1 cell value
from,
Best
Excel
Forum
to,
Best Excel Forum ?
Hi forum expert,
Run the following code;
![]()
Sub Makro1() Range("A1").FormulaR1C1 = "Best" & Chr(10) & "Excel" & Chr(10) & "Forum" End Sub
How can I make A1 cell value
from,
Best
Excel
Forum
to,
Best Excel Forum ?
Last edited by HerryMarkowitz; 11-23-2013 at 05:39 PM.
One way
![]()
Range("A1").Value = Replace(Range("A1").Value, vbLf, "")
Perfect. Thank you very much.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks