ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Revise Macro from Worksheet (https://www.excelbanter.com/excel-programming/354968-revise-macro-worksheet.html)

tx12345[_14_]

Revise Macro from Worksheet
 

Hi

I have this bit of code which for the most part is pretty handy:

Sub ABC()
Range("ah11").Formula = Range("AH17").Text
Do Until Range("AH27").Value = "5"
Application.Run "newset"
Loop
End Sub

AH17 is where I tinker with a formula, then run a test, and so on,
until the value at AH27 gets to 5, where I find 5 instances of what I
am looking for, then it stops. It is nice to be able in this way to
revise the formula from the spreadsheet without having to dig into the
macro directly.

But I have not been able to figure out a way to revise the "5" from the
worksheet. Sometimes I want to run 10 tests, or just 3, etc, but each
time I have to dig into the macro to make the revision.

Is there a way to update the value at "5" above from the worksheet?

Many thanks

tx


--
tx12345
------------------------------------------------------------------------
tx12345's Profile: http://www.excelforum.com/member.php...o&userid=24776
View this thread: http://www.excelforum.com/showthread...hreadid=518531


Tom Ogilvy

Revise Macro from Worksheet
 
Put 5 in AI17. Or change AI17 to some cell you are not using.

Sub ABC()
Range("ah11").Formula = Range("AH17").Text
Do Until Range("AH27").Value = Range("AI17").Value
Application.Run "newset"
Loop
End Sub

--
Regards,
Tom Ogilvy



"tx12345" wrote in
message ...

Hi

I have this bit of code which for the most part is pretty handy:

Sub ABC()
Range("ah11").Formula = Range("AH17").Text
Do Until Range("AH27").Value = "5"
Application.Run "newset"
Loop
End Sub

AH17 is where I tinker with a formula, then run a test, and so on,
until the value at AH27 gets to 5, where I find 5 instances of what I
am looking for, then it stops. It is nice to be able in this way to
revise the formula from the spreadsheet without having to dig into the
macro directly.

But I have not been able to figure out a way to revise the "5" from the
worksheet. Sometimes I want to run 10 tests, or just 3, etc, but each
time I have to dig into the macro to make the revision.

Is there a way to update the value at "5" above from the worksheet?

Many thanks

tx


--
tx12345
------------------------------------------------------------------------
tx12345's Profile:

http://www.excelforum.com/member.php...o&userid=24776
View this thread: http://www.excelforum.com/showthread...hreadid=518531




tx12345[_15_]

Revise Macro from Worksheet
 

ah! .Value !

Such a simple thing, thank you!

tx


--
tx12345
------------------------------------------------------------------------
tx12345's Profile: http://www.excelforum.com/member.php...o&userid=24776
View this thread: http://www.excelforum.com/showthread...hreadid=518531



All times are GMT +1. The time now is 12:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com