If cell value changes then -VBA

sarvadeshavyapta

New Member
Joined
Jul 31, 2015
Messages
30
Code:
 Sub alphacode()      
          On Error Resume Next
          Range("X6") = Chr(Month(Now) + 64)
          End sub

How to add some more lines in this code which would reset range Y6 value to "000" for every change in alphabets.
Eg: This is november. X6 will be K,on december X6 will be L,This change shall cause reset of Y6 :)
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Possibly...

Code:
Sub alphacode()
    Dim xstr As String
    On Error Resume Next
    xstr = Range("X6").Value
    Range("X6") = Chr(Month(Now) + 64)
    If Range("X6").Value <> xstr Then Range("Y6").Value = 0
    Range("Y6").NumberFormat = "000"
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,633
Messages
6,125,929
Members
449,274
Latest member
mrcsbenson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top