You could use the following formula to create a cell containing the number of seconds until start.
- Code: Select all
=IF(LEFT(D2)<>"-",(HOUR(D2)*3600)+(MINUTE(D2)*60)+SECOND(D2),-((HOUR(SUBSTITUTE(D2,"-",""))*3600)+(MINUTE(SUBSTITUTE(D2,"-",""))*60)+SECOND(SUBSTITUTE(D2,"-",""))))
You can then refer to this in your trigger formula. For example if you put the above formula in cell Z1 you can use the following formula to trigger a back bet at 1 minute before the start.
- Code: Select all
=if(Z1<=60,"BACK","")