Jamaquack27
Sitting Out
+1 for a beta tester if required!
I had started something similar a while ago, and when I saw your post, I decided to move forward with it. (Thanks for the inspiration!) I’ve got mine complete, but it’s built for my league....not to be customized. I’ve included POY calculations. You probably don’t need it, but if you’d like to see it, let me know and I’ll get it to you.I'm cool with sharing this with those of you that said you'd like to test it. Not sure where I am in turning a profit on something like this. I'd want it to be bug free. Still have to add in the saved stuctures. Personalized POY of Year point systems might be nice too.
I messed with my spreadsheet over the weekend. I think I found a relatively simple way to get around the timer running slow when actively working on the worksheet. If your VBA code is like mine, you did something like the following for the timer ----- B3 = B3 - TimeValue("00:00:01"), so when the spreadsheet is doing multiple things, it can slow down that calculation.So the biggest bug is that the timer will run slow if you are actively adding names, clicking and changing things in your setup while it's running. If you get it set and leave it to run on the live game screen, there are no issues. Adding a rebuy or entering a finishing position doesn't seem to affect it. It might be a few seconds slow after 15-20 minutes if you have to enter someone's rebuy or finishing place. The VBA is coded using Application.OnTime adding a second every process of the sub. So basically if you are having the spreadsheet calculate a lot of the other features while it's running, it will not stay locked to the second hand and could skip a tick during other calculations. I can't think of a way to code it differently to keep it perfect but a few seconds per 15-20 minutes may never be noticed.
I would definitely like to test this out.I'm cool with sharing this with those of you that said you'd like to test it. Not sure where I am in turning a profit on something like this. I'd want it to be bug free. Still have to add in the saved stuctures. Personalized POY of Year point systems might be nice too.
Where did you get that Excel bro??? Looks amazingView attachment 319753
What you have is similar to our league. This was last year during the brewers playoff run. We run this on a big screen tv via HDMI. It’s worked well. We are on season 7 of our league.
Hello my friend can i get your spreadsheet? For tester pleaseI messed with my spreadsheet over the weekend. I think I found a relatively simple way to get around the timer running slow when actively working on the worksheet. If your VBA code is like mine, you did something like the following for the timer ----- B3 = B3 - TimeValue("00:00:01"), so when the spreadsheet is doing multiple things, it can slow down that calculation.
Here's my workaround:
1. Dimension a variable as Date:
Dim Beginning As Date
2. Create a new Sub to define the value of "Beginning" as Now and then run the timer sub
Sub GetStartTime()
Beginning = Now()
Run "timer"
End Sub
3. Instead of the formula above you can now use:
B3 = B3 - (Now() - Beginning)
Obvioulsy I'm oversimplifying things, but hopefully you can see how, when the timer basically pauses when you're working with the sheet, it will pick up the correct time when you're done because it's always calculating the difference between when you started the timer and now.
I'm guessing you get it, but if not, I'm happy to send you my spreadsheet.
My co organizer is an actuary so he is crazy proficient in excel.Where did you get that Excel bro??? Looks amazing
And can i have the spreadsheet To test please? My friendMy co organizer is an actuary so he is crazy proficient in excel.
Man, that's schmexy. And with excel, you can customize the aesthetics exactly the way you want. I sure wish I knew how to do VBA.View attachment 319753
What you have is similar to our league. This was last year during the brewers playoff run. We run this on a big screen tv via HDMI. It’s worked well. We are on season 7 of our league.