myxxmikeyxx
New member
Hello I have a few recommendations for the configurator tool on vorondesign.com
I was using the configurator tool on the website to get a BOM for a Voron2.4
Where does it pull the names for the parts? I noticed they don't all match but are very close. I know it doesn't pull them form the google sheets BOM with links because they don't match exactly.
Could this be changed and fixed so that the generated BOM (gBOM) matches the BOM on the website so ctrl + f works?
Second is can the gBOM creation tool talk to the spreadsheet at all to get information? The reason I am asking is if the gBOM and the online BOM have matching names then you can do a command like
``` =IFERROR(VLOOKUP(B2&"*",BOM!C:H,3, FALSE), "Can't Find on List") ``` for a column to show the normal package size
``` =IFERROR(IF(VLOOKUP(B2&"*",BOM!C:H,5, FALSE) = "", "No Source", VLOOKUP(B2&"*",BOM!C:H,5, FALSE)) , "Can't Find On List") ``` for a column with a link to the recommended sourcing location?
I am no expert by any means but google appscript is powerful. I use to code in it every day for the education system I worked for. I was reading that website links can make calls to a script's function (Link) to do task and return values. This might be how you get those values that match the BOM into the gBOM.
***
Side note I copied the BOM on the website into a google sheets page and then imported my gBOM and then did this in two columns to get a list that matches the BOM but shorter.
This is did work but if those scrips could be used and then the BOM be generated with those links that might help a lot of people.
I am not saying to add the prices or anything like that, just make a BOM with a date time stamp and links from the time it was created.
At least if the BOM and the generated BOM match then someone can do what I did a lot easier and no have to flip back and forth a dozen+ times to get everything they need.
***
I was using the configurator tool on the website to get a BOM for a Voron2.4
Where does it pull the names for the parts? I noticed they don't all match but are very close. I know it doesn't pull them form the google sheets BOM with links because they don't match exactly.
Could this be changed and fixed so that the generated BOM (gBOM) matches the BOM on the website so ctrl + f works?
Second is can the gBOM creation tool talk to the spreadsheet at all to get information? The reason I am asking is if the gBOM and the online BOM have matching names then you can do a command like
``` =IFERROR(VLOOKUP(B2&"*",BOM!C:H,3, FALSE), "Can't Find on List") ``` for a column to show the normal package size
``` =IFERROR(IF(VLOOKUP(B2&"*",BOM!C:H,5, FALSE) = "", "No Source", VLOOKUP(B2&"*",BOM!C:H,5, FALSE)) , "Can't Find On List") ``` for a column with a link to the recommended sourcing location?
I am no expert by any means but google appscript is powerful. I use to code in it every day for the education system I worked for. I was reading that website links can make calls to a script's function (Link) to do task and return values. This might be how you get those values that match the BOM into the gBOM.
***
Side note I copied the BOM on the website into a google sheets page and then imported my gBOM and then did this in two columns to get a list that matches the BOM but shorter.
This is did work but if those scrips could be used and then the BOM be generated with those links that might help a lot of people.
I am not saying to add the prices or anything like that, just make a BOM with a date time stamp and links from the time it was created.
At least if the BOM and the generated BOM match then someone can do what I did a lot easier and no have to flip back and forth a dozen+ times to get everything they need.
***