by osknows » Tue Jul 06, 2010 7:28 pm
Mak's method works fine if you don't plan to clear out the bet references. There is a method in excel which can retain the memory of whether a bet has been placed after a cell has changed. This is a neat method if you prefer not using vba
In Excel goto Options/Formulas and enable iterative calcualtions and set the maximum iterations to something large like 32,767 (max limit might be lower in excel 2003)
This will allow circular referencing of cells
Then in cell AA5 enter the following and drag down
=IF($AA$1="Reset","",IF(OR(T5<>"",AA5="Bet Placed"),"Bet Placed",""))
If any character is placed in T5 then 'Bet Placed' appears in AA5. If T5 is then cleared 'Bet Placed' is still held in AA5. AA5 Can then be cleared by placing 'Reset' in cell AA1