K
Karen53
Hi,
I am placing information to a worksheet via vba code and the wrap is not
working. How do I correct this? Here is my code:
Sub SaveTenantName(Choice)
With MainPagepg
'save Tenants Name
With .Cells(Choice, 6)
.NumberFormat = "General"
.HorizontalAlignment = xlLeft
.WrapText = True
.Value = frmStoreData.txtTenantName.Value
End With
End With
End Sub
I am placing information to a worksheet via vba code and the wrap is not
working. How do I correct this? Here is my code:
Sub SaveTenantName(Choice)
With MainPagepg
'save Tenants Name
With .Cells(Choice, 6)
.NumberFormat = "General"
.HorizontalAlignment = xlLeft
.WrapText = True
.Value = frmStoreData.txtTenantName.Value
End With
End With
End Sub