VBA Macro is not running with existing formula

rkb1510

New Member
Joined
Oct 24, 2024
Messages
12
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi Everyone,
I have created one macro which can insert date in Column B whenever Column A read "Ready" But it is working only when I Manually add "Ready" word in col A If Ready word come when condition of formula come true Col B is not populating date. I have set some formula in Col A which Populate ready whenever condition of formula become true. Can someone please help me with this issue?
 
Is there ANYTHING being manually entered in to the same row that is triggering these formulas to be updated (that ultimately lead to column M being updated).
If so, which columns are those?

You would just update the Worksheet_Change to watch for changes in those columns.
However, that would only work if the columns being manually updated are in the same row as the formula in column M being updated.

For example, let's say that columns A and B are being manually updated.
Let's say that manually updating column A doesn't affect anything, but manually updating column B ultimately leads to column M in the same row being updated.
If so, then we can program our Worksheet_Change event procedure to watch column B for updates, because those are the updates that ultimately lead to column M being updated.
unfortunately none of columns will be changing manually, except sometimes I am going to change col M manually but most of the time it will be changing with formulas.

But anyways thank you so much for your time and efforts. it was really helpful to diagnose and dig deep into problem.
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
So, how exactly does the data change? Formulas call from other cells, which could call from other cells, etc.
If you trace it all the way back, what is the original change that causes all the formulas to update/change values?

Where is the source data coming from, and how/where is that being changed?
 
Upvote 0

Forum statistics

Threads
1,226,113
Messages
6,189,048
Members
453,522
Latest member
Seeker2025

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