K
kevin carter
Hi
We have this section of code that works it joins the text in the
following format.
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(R[-25]C[12],"" "",R[-25]C[13],R[-24]C[12],""
"",R[-24]C[13])"
The result is "four five six seven"
What we are trying to do is split the result using the code below to
display
the following result
"four five
six seven"
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(R[-25]C[12],"" "",R[-25]C[13], & Chr(10) &
,R[-24]C[12],"" "",R[-24]C[13])"
is it posible?
thanks in advance
kevin
We have this section of code that works it joins the text in the
following format.
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(R[-25]C[12],"" "",R[-25]C[13],R[-24]C[12],""
"",R[-24]C[13])"
The result is "four five six seven"
What we are trying to do is split the result using the code below to
display
the following result
"four five
six seven"
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(R[-25]C[12],"" "",R[-25]C[13], & Chr(10) &
,R[-24]C[12],"" "",R[-24]C[13])"
is it posible?
thanks in advance
kevin