Creating an automated macro that changes one cell value if another cell value is equal or less than a specific number

TheCovenant75

New Member
Joined
Oct 24, 2023
Messages
14
Office Version
  1. 365
Platform
  1. Windows
Hey, im new to vba coding and im trying to create an automated macro that constantly checks two cell values for my worksheet .
Basically i want it to check cell A12 and if its equal and or less than 250 to update Cell C12 with the number 250

I had tried to do it like this with what i learned from youtube videos (I'm sorry in advance if this hurts anyone here to read (>_<) )

Private Sub Worksheet_Change(ByVal Target As Range)

IF Sheets("Load Calculator").Cells(12, 1).Value => 250 then Sheets("Load Calculator").Cells(12, 3).Value = 250

End IF
End Sub
 
Thank you guys so much for the assistance. As i just woke up, i'm going to try the codes that were sent.
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
If C12 only changes once, then this should do it, placed in the sheet module for the sheet A12/C12 is located on:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Target, Range("A12")) Is Nothing Then

If Sheets("Load Calculator").Cells(12, 1).Value <= 250 And Sheets("Load Calculator").Cells(12, 1).Value > 0 Then Sheets("Load Calculator").Cells(12, 3).Value = 250

End If

End Sub
Thank you so much! This is exactly what i needed. Also as a new learner, where do you recommend I go for material to peruse to get better?
 
Upvote 0
If C12 is meant to go blank if any value greater than 250 is entered into A12, then you could use a simple formula like this:
The Covenant.xlsm
ABC
12220250
Sheet1
Cell Formulas
RangeFormula
C12C12=IF(A12="","",IF(A12=0,0,IF(AND(A12>0,A12<=250),250,"")))


On the other hand, if C12 should retain its existing value if a value greater than 250 is entered into A12, then I would recommend a Select Case method to cover all your desired scenarios. Right click the sheet tab name, select View Code, and copy the code below into the window that appears on the right of screen.
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Cells.CountLarge = 1 And Not Intersect(Range("A12"), Target) Is Nothing Then
        On Error GoTo Escape
        Application.EnableEvents = False
        Select Case Target.Value
            Case ""
            Range("C12") = ""
        Case 0
            Range("C12") = 0
        Case Is > 0
            Select Case Target.Value
                Case Is <= 250
                Range("C12") = 250
            End Select
        End Select
    End If
Continue:
    Application.EnableEvents = True
    Exit Sub
Escape:
    MsgBox "Error " & Err.Number & ": " & Err.Description
    Resume Continue
End Sub
Thanks! I will keep this for reference in my Excel/VBA learning journey
 
Upvote 0
Thank you so much! This is exactly what i needed. Also as a new learner, where do you recommend I go for material to peruse to get better?
I used a lot of google when I learned. Just look up what you want to achieve and you will likely find other forum posts about it or even videos. Worst case, you post back here with what you have managed to put together and we help straighten it out if it's not working the way you expect it to. It helps when you have a project to focus on. I started learning when I wanted to make a fancy userform powered work sheet to keep track of certain accounts at work.

I also learn as I go here helping others.
 
Upvote 0
I used a lot of google when I learned. Just look up what you want to achieve and you will likely find other forum posts about it or even videos. Worst case, you post back here with what you have managed to put together and we help straighten it out if it's not working the way you expect it to. It helps when you have a project to focus on. I started learning when I wanted to make a fancy userform powered work sheet to keep track of certain accounts at work.

I also learn as I go here helping others.
Thats awesome! I'm currently working on a project which this is for. And its meant to show up a cash value for miles if its below the 250 threshold...so anything 250 miles and below it would show $250

Hmmm also, putting in the code.. well it works but when i update figures on my sheet it doesnt update... Should i have done an excel formula instead as Kevin9999 suggested? Except C12 isnt meant to go blank after it hits 251. I apologize if i was not clearer. >.<

Ok, C12 pulls data from another worksheet as stated and it looks something like this

1698209563153.png


C12 also has a formula that pulls data from said worksheet as well.
1698209693050.png


Now my request is that a formula that would trigger the 250 threshold if its equal or less and have C12 updated to reflect the $250

So A12 keeps its existing formula but a new one is combined with it to have C12 update to show $250 no matter what until 251 and above has been placed in the miles cell (A12) it does not go blank. It essentially resumes its first formula until the threshold has been passed again to activate the second formula. If that makes any sense
 
Upvote 0
That's the formula, I wanted to know if you'd tried the code?
 
Upvote 0
That's the formula, I wanted to know if you'd tried the code?
Yes i've also tried the code and it doesn't update the figures, it does not update the sheet

1698210763520.png


1698210871258.png


A12 is below 250, however C12 has not been updated to reflect the change.
 
Upvote 0
Did you put it in the worksheet code area of the sheet your image shows? Or did you put it in a standard module?
Here's a ;onk to the file I used to test the code - let me know if it works for you or not?
The Covenant.xlsm
 
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,122
Members
449,096
Latest member
provoking

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