Código para Separar texto en una macro de VB en Excel
Necesito tu ayuda ya que no tengo nada de experiencia en VB y lo que hago es pedir ayuda a un experto y luego trato de hacer pequeñas modificaciones, en este caso ya mi macro esta funcionando bien, lo que no se como hacer es como indicar por medio de código donde termina una linea de texto de manera que cuando las personas reciban el mensaje este tenga un formato adecuado y no todo en linea como me pasa hasta el momento,
Aquí te muestro la macro,
Gracias por tu ayuda,
Private Sub Workbook_Open()
'envía mail
'Por.Dam
Sheets("Sampling Criteria").Select
ufila = Range("ES" & Rows.Count).End(xlUp).Row
For i = 7 To ufila
If Cells(i, 19) > 0 Then
Set parte1 = CreateObject("outlook.application")
Set parte2 = parte1.createitem(olmailitem)
para = Cells(i, 22) & ";" & Cells(i, 23) & ";" & Cells(i, 24)
parte2.to = para 'Destinatarios
'parte2.CC = "" 'Con copia
parte2.Subject = "Sampling Criteria" '"Asunto"
'"Cuerpo del mensaje"
parte2.body = "Ello, Andy, you just received the attachement named " & Cells(i, 27) & _
" that contains " & Cells(i, 19) & _
" creations. According to the Sampling Standard ANSI/ASQ Z1.4-2008 the sample size to be audited is n= " & Cells(i, 20) & _
" What means an accuracy level of 99% and an AQL of 1%. Please audit the following records " & Cells(i, 31) & _
" That have been selected randomly. According to the Sampling Standard you have to proceed as follows: For critical errors, maximum quantity allowed is " & Cells(i, 9) & _
" For non-critical errors the amount allowed is equal to " & Cells(i, 8) & _
" . If you find more errors than allowed ALL the transactions must be audited. Please let us know if you have any concern, Regards,"
'parte2.Attachments.Add Ruta & Archivo
parte2.send 'El correo se envía en automático
'parte2.display 'El correo se muestra
End If
Next
End Sub