Quick question this is my first time using something like this but I was wondering how data gets entered into the excel sheets. Currently I am hosting the website on my macbook so would I need to scan the qr codes on my macbook for it to get entered into the excel sheets? Great app by the way assuming we can get it to work.
Yes, within one of their excel templates is a QR scanner macro. You click the macro button, then you can either enter the QR data manually, or use a scanner connected to your computer to auto input the data string. This can all be viewed in the âHow we scoutâ section of their GitHub page for ScoutingPASS.
Good news! After a long debugging session tonight we finally found the problem. The Google Script code is not correct. In order to fix this issues change the following line:
return header === 'Date' ? new Date() : e.parameter[header].join(",")
to:
return header === 'Date' ? new Date() : e.parameter[header]
(remove the .join(â,â) at the end.)
Youâll need to redeploy the code.
Please let us know if that solves your issues.
Thanks for the assistance just once more question so iâve opened up the file on vscode and I need to download a debuger as well to run it is there any other way to run it?
Actually I think a better question is how do you open the qr code macro
In the GitHub repo in the Excel directory is a file called 2023 Excel Skeleton.xlsm.
That spreadsheet has a button that is tied to the QR code reading macro. The macro will open up an input pop up. Scan the QR code and the data will be copied into the input field. The macro will then take the input from the scanner, parse it and paste it into the âMatch Scouting Dataâ sheet.
If you just want the macro code it is in the QRReader.bas VB file in the same directory.
Thank you so much! I think iâve almost got it Iâm just a bit confused on how the macro works as iâm inputing data but it says that it cannot create an object and run time error 429. Iâm currently manually entering in data is that why its happening?
Try running your version of the scouting web app on the same computer as your Excel sheet.
Scout a match on the App and go to the QR code page. Thereâs a âCopy Dataâ button. It will copy the input to your clipboard.
Then go to Excel, start the macro, and paste the data (from the clipboard) into the input field. It should process without a problem.
Remember, if you modify your configuration, youâll need to modify the macro so that the fields match up between the two.
I ran the scouting application thta I am currently hosting on GitHub pages and I am pasting it into the excel macro but it gives me the same error.
We had some issues running the macros on OSX devices (assuming 429 is the cannot create activeX object error), which means my best guess is that VBA doesnât really like certain OSX devices.
We ended up just forcing our scouts to only run the spreadsheet on a Windows computer.
Oh so its better to run this application on windows computer? Right now I am using a macbook to run the application
The excel spreadsheet portion yes. The web application can run on any device with a web browser.
Good luck to all our ScoutingPASS teams going into Week 1!
Weâve had a few instances of the TBA integration not working because the event code was entered with capital letters. Event codes need to be all lowercase. A bug fix will be issued shortly.
A big thank you to PWNAGE for sharing your scouting program with everyone!! It inspired Fondy Fire to share our data analysis spreadsheet. Weâll be scouting with ScoutingPASS this year, so we formatted our spreadsheet to work with the ScoutingPASS data output.
Hereâs the link to the post that contains info about the spreadsheet and how to download it.
Thanks to everyone who helped me set up the app! It worked to great success and made scouting feel so much more easier and faster than when doing it on paper!
another question, can you change the text that shows up on excel? for example, the match level column displays âqmâ for quals, or the driver effectiveness just does one letter. Is there a way that you can change the config on github to display (for example) âqualsâ or âfinalsâ or âvery effectiveâ when you input QR codes?
Tried to change some config settings, but I have no clue how javascript, css or html work and ended up breaking the website lol
We use abbreviations whenever possible to keep the QR code size reasonable and easily read by the scanner.
You can use Excel to expand those fields if youâd like. Create a new column in the Match Scouting Data table, like âmatchLevelStrâ and enter in this formula:
=IF([@matchLevel]=âqmâ, âqualsâ, IF([@matchLevel]=âfâ, âfinalsâ, IF([@matchLevel]=âdeâ, âdouble eliminationâ, âotherâ)))
You can do the same with any of the other fields. We usually turn driver skill into a number, âdriverSkillMetricâ
=IF([@driverSkill]=ânâ, 0, IF([@driverSkill]=âaâ, 5, IF([@driverSkill]=âvâ, 10,ââ)))
I hope that helps.
Very cool, thank you!
If youâre using the Fondy Fire Scouting Analysis Spreadsheet with PWNAGE ScoutingPASS app, please note that I updated the spreadsheets to incorporate the new column PWNAGE added to the Pit Scouting section (Number of Batteries.)
https://drive.google.com/drive/u/2/folders/1r2Ydo_k8z8PB22js2s0YoyHkYiD2gaqU
Original files are here:
https://drive.google.com/drive/u/2/folders/11fI8mQp-MRaY9hOOFReAa05tJofppfEl
This is version 3 of the Fondy Fire Scouting Analysis Spreadsheet. It was updated today (3/19/2023) to match the revisions made by PWNAGE on github this weekend.
https://drive.google.com/drive/folders/1cZVFbPmlJPtrD0bn7T9lp1O1QQ34Fspd?usp=share_link