Hi You should use this one
Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = 0 If Target.Column = 1 And WorksheetFunction.IsNumber(Target.Value) Then Target.Value = (Target.Value * 12) / 100 End If Application.EnableEvents = 1 End Sub Rajan From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Sharath Sambrani Sent: Apr/Wed/2012 06:13 To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Event macro request Thanks Rajan, It worked! Appreciate your quick reply. Cheers, Sharath On Wed, Apr 4, 2012 at 6:01 PM, Rajan_Verma <rajanverma1...@gmail.com> wrote: Please try it. Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = 0 If Target.Column = 1 Then Target.Value = (Target.Value * 12) / 100 End If Application.EnableEvents = 1 End Sub Rajan From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Sharath Sambrani Sent: Apr/Wed/2012 11:48 To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Event macro request Hello Experts, I have a quick question for you. I am looking for a event macro. Whenever someone inputs a value in any cell under a particular column (say column A) and hits ENTER, the value in the same cell should calculate as (Value x 12)/100. For example, I enter a value in cell A2, the result should show in A2. Similarly for all the cells A3, A4,..... Thank you, Sharath -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ---------------------------------------------------------------------------- -------------------------- To post to this group, send email to excel-macros@googlegroups.com -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ---------------------------------------------------------------------------- -------------------------- To post to this group, send email to excel-macros@googlegroups.com -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ---------------------------------------------------------------------------- -------------------------- To post to this group, send email to excel-macros@googlegroups.com -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ------------------------------------------------------------------------------------------------------ To post to this group, send email to excel-macros@googlegroups.com