coma will be added only if you enter a sting in B column in sheet1

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count = 1 Then
If Target.Column = 2 Then
If WorksheetFunction.IsText(Target.Value) Then
Application.EnableEvents = False
Target.Value = Target.Value + ","
Application.EnableEvents = True
End If
End If
End If
End Sub


On Wed, Sep 8, 2010 at 4:49 AM, NRao Mynampati
<ml.narasimha...@gmail.com> wrote:
>
> Dear to all
> i want a coma in a cell after i enter a name.
> Dnt use concatenate formula orĀ  a1&"," is look like that.
> Regards,
> Narasimharao ML

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 7000 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

Reply via email to