<?xml version="1.0"?>
<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
							<channel><title>New Posts For Thread: Excel VBA help please</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please</link><description>I want to call some code when a cell value has been changed by an outside event (such as Gruss)Private Sub Worksheet_Change(ByVal Target As Range) only seems to work if you enter the cell value manually.Is there an alternative that will detect an aut</description><item><title>Better forget my post for the time beingIt's is not as simple as I thought it might be.</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074946#421074946</link><description>Better forget my post for the time beingIt's is not as simple as I thought it might be.</description><pubDate>Thu, 08 Apr 2010 14:12:42 -0500</pubDate></item><item><title>Ah - exactly. Calcs and conditionals. I've never looked at the screen update commands etc. so I'll give that a go too.cheers.</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074942#421074942</link><description>Ah - exactly. Calcs and conditionals. I've never looked at the screen update commands etc. so I'll give that a go too.cheers.</description><pubDate>Thu, 08 Apr 2010 14:12:30 -0500</pubDate></item><item><title>THanks all of you.SLowness was due to my having half a million existing formulas on the sheet which I was going to cut out. (Writing from scratch instead) now.)Think I have it sorted now. tx again/</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074938#421074938</link><description>THanks all of you.SLowness was due to my having half a million existing formulas on the sheet which I was going to cut out. (Writing from scratch instead) now.)Think I have it sorted now. tx again/</description><pubDate>Thu, 08 Apr 2010 14:11:20 -0500</pubDate></item><item><title>I'm not too sure why Private Sub Worksheet_Calculate() is slowing everything down to a crawl unless you have lots of formulas,conditional cells etc and you can always turn off the calcultions and screen updates if thats whats slowing it downPrivate</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074934#421074934</link><description>I'm not too sure why Private Sub Worksheet_Calculate() is slowing everything down to a crawl unless you have lots of formulas,conditional cells etc and you can always turn off the calcultions and screen updates if thats whats slowing it downPrivate</description><pubDate>Thu, 08 Apr 2010 14:09:58 -0500</pubDate></item><item><title>You could use conditional formatting with the use of the =now()If (now()is greater than whatever Looking into it to see if I can figure it outI know it works with date() so it should work with now()http://en.kioskea.net/forum/affich-202505-conditio</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074930#421074930</link><description>You could use conditional formatting with the use of the =now()If (now()is greater than whatever Looking into it to see if I can figure it outI know it works with date() so it should work with now()http://en.kioskea.net/forum/affich-202505-conditio</description><pubDate>Thu, 08 Apr 2010 14:00:49 -0500</pubDate></item><item><title>Beyond me I'm afraid, have you tried asking on the gruss forum? Gary's usually very helpful</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074922#421074922</link><description>Beyond me I'm afraid, have you tried asking on the gruss forum? Gary's usually very helpful</description><pubDate>Thu, 08 Apr 2010 13:48:58 -0500</pubDate></item><item><title>Thanks Ghetto JoeThanks, I just discovered Private Sub Worksheet_Calculate() but it slows the gruss updates down to a crawl.I'd be happier to use a user-defined function triggered by an 'if' statement in a cell - but I can only semm to make these wor</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074914#421074914</link><description>Thanks Ghetto JoeThanks, I just discovered Private Sub Worksheet_Calculate() but it slows the gruss updates down to a crawl.I'd be happier to use a user-defined function triggered by an 'if' statement in a cell - but I can only semm to make these wor</description><pubDate>Thu, 08 Apr 2010 13:19:00 -0500</pubDate></item><item><title>I forgot the forum strips out greater than signsPrivate Sub Worksheet_Calculate()If Range("A1") = 10 Then MsgBox "Cell A1 is 10"End Sub</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074910#421074910</link><description>I forgot the forum strips out greater than signsPrivate Sub Worksheet_Calculate()If Range("A1") = 10 Then MsgBox "Cell A1 is 10"End Sub</description><pubDate>Thu, 08 Apr 2010 13:10:52 -0500</pubDate></item><item><title>Worksheet calculate will detect a change in formula just amend the following Private Sub Worksheet_Calculate()If Range("A1") 100 Then MsgBox "changed"End Subor alternatively use the Private Sub Worksheet_Change(ByVal Target As Range) and log one of</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074906#421074906</link><description>Worksheet calculate will detect a change in formula just amend the following Private Sub Worksheet_Calculate()If Range("A1") 100 Then MsgBox "changed"End Subor alternatively use the Private Sub Worksheet_Change(ByVal Target As Range) and log one of</description><pubDate>Thu, 08 Apr 2010 13:08:38 -0500</pubDate></item><item><title>I think you need to keep an oldvalue copy of the cell/s you are monitoring.Use a timer function to check every few seconds if oldvalue equals cell currentvalue. If it does not then a change has been made. Do what you require then set oldvalue to curr</title><link>https://community.betfair.com/general_betting/go/thread/view/94082/23538958/excel-vba-help-please?post_id=421074902#421074902</link><description>I think you need to keep an oldvalue copy of the cell/s you are monitoring.Use a timer function to check every few seconds if oldvalue equals cell currentvalue. If it does not then a change has been made. Do what you require then set oldvalue to curr</description><pubDate>Thu, 08 Apr 2010 12:54:00 -0500</pubDate></item></channel></rss>
