Perhaps I'm not following but your formula basically says "has a value other than cancelled".
So I assume you are using that to block further betting?
I'm not sure how you can get multiple bets accepted without using a CLEAR trigger anyway.
There is something in the back of my mind that says using the T5<>"" test caused me problems in the past and I preferred LEN(T5) > 0 instead.
I have in the past used a helper column in the worksheet to help decide if an existing bet reference needs to be cleared within my VBA processing.
If its any use to you the helper formula looks like this (1=to clear):
IF(ISNUMBER(IFERROR(VALUE(T5),"X")),1,IF(T5="CANCELLED",1,0)))
Hope this helps.
So I assume you are using that to block further betting?
I'm not sure how you can get multiple bets accepted without using a CLEAR trigger anyway.
There is something in the back of my mind that says using the T5<>"" test caused me problems in the past and I preferred LEN(T5) > 0 instead.
I have in the past used a helper column in the worksheet to help decide if an existing bet reference needs to be cleared within my VBA processing.
If its any use to you the helper formula looks like this (1=to clear):
IF(ISNUMBER(IFERROR(VALUE(T5),"X")),1,IF(T5="CANCELLED",1,0)))
Hope this helps.
Statistics: Posted by RobOrBob — Tue Apr 29, 2025 10:07 pm