| A | B | C | D | E | F | G | H | I | J | |
|---|---|---|---|---|---|---|---|---|---|---|
1 | Given a numeric VANID, you can compute the URL for the profile page in NGP. eg given VANID of 55,895, the URL is https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID75ADQ. So, how can you compute that URL param, EID75ADQ? It is composed of three parts: 1) the constant prefix "EID" 2) The VANID in hexadecimal, reversed (what I call inhexrev below) eg for 55,895, in hexadecimal is "DA57", and then that reversed is "75AD" 3) A single character suffix of cycling from "A" through "Q", eg a VANID of 0->A, 1->B, 2->C, ..., 16 -> Q, 17 ->A, 18 -> B, etc eg for 55,895, the single character suffix is Q | Given a URL of a profile page, you can compute the VANID. This is just the inverse process. | ||||||||
2 | =BASE(VANID, 16) | =JOIN( "", ARRAYFORMULA( MID( inhex, SEQUENCE( LEN(inhex), 1, LEN(inhex), -1 ), 1 ) ) | =MID( "ABCDEFGHIJKLMNOPQ", MOD(VANID, 17) + 1, 1 ) | ="EID" & inhexrev & suffix | =LET( vanid,<INPUT_CELL_EG_A1>, inhex, BASE(vanid, 16), inhexrev, JOIN("",ARRAYFORMULA(MID(inhex,SEQUENCE(LEN(inhex),1,LEN(inhex),-1),1))), suffix, MID("ABCDEFGHIJKLMNOPQ", MOD(vanid, 17) + 1, 1), "https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID" & inhexrev & suffix ) | =REGEXEXTRACT( URL, "VANID=EID([0-9A-F]+)[A-Q]" ) | =JOIN( "", ARRAYFORMULA( MID( inhexrev, SEQUENCE( LEN(inhexrev), 1, LEN(inhexrev), -1 ), 1 ) ) | =DECIMAL(inhex,16) | =LET( url, <INPUT_CELL_EG_A1>, inhexrev, REGEXEXTRACT(url, "VANID=EID([0-9A-F]+)[A-Q]"), inhex, JOIN("",ARRAYFORMULA(MID(inhexrev,SEQUENCE(LEN(inhexrev),1,LEN(inhexrev),-1),1))), decimal(inhex, 16) ) | |
3 | VANID | inhex | inhexrev | suffix | URL Param | URL | inhexrev | inhex | VANID | VANID |
4 | 1 | 1 | 1 | B | EID1B | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID1B | 1 | 1 | 1 | 1 |
5 | 2 | 2 | 2 | C | EID2C | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID2C | 2 | 2 | 2 | 2 |
6 | 3 | 3 | 3 | D | EID3D | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID3D | 3 | 3 | 3 | 3 |
7 | 4 | 4 | 4 | E | EID4E | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID4E | 4 | 4 | 4 | 4 |
8 | 5 | 5 | 5 | F | EID5F | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID5F | 5 | 5 | 5 | 5 |
9 | 6 | 6 | 6 | G | EID6G | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID6G | 6 | 6 | 6 | 6 |
10 | 7 | 7 | 7 | H | EID7H | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID7H | 7 | 7 | 7 | 7 |
11 | 8 | 8 | 8 | I | EID8I | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID8I | 8 | 8 | 8 | 8 |
12 | 9 | 9 | 9 | J | EID9J | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID9J | 9 | 9 | 9 | 9 |
13 | 10 | A | A | K | EIDAK | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDAK | A | A | 10 | 10 |
14 | 11 | B | B | L | EIDBL | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDBL | B | B | 11 | 11 |
15 | 12 | C | C | M | EIDCM | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDCM | C | C | 12 | 12 |
16 | 13 | D | D | N | EIDDN | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDDN | D | D | 13 | 13 |
17 | 14 | E | E | O | EIDEO | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDEO | E | E | 14 | 14 |
18 | 15 | F | F | P | EIDFP | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDFP | F | F | 15 | 15 |
19 | 16 | 10 | 01 | Q | EID01Q | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID01Q | 01 | 10 | 16 | 16 |
20 | 17 | 11 | 11 | A | EID11A | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID11A | 11 | 11 | 17 | 17 |
21 | 18 | 12 | 21 | B | EID21B | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID21B | 21 | 12 | 18 | 18 |
22 | 19 | 13 | 31 | C | EID31C | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID31C | 31 | 13 | 19 | 19 |
23 | 20 | 14 | 41 | D | EID41D | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID41D | 41 | 14 | 20 | 20 |
24 | 21 | 15 | 51 | E | EID51E | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID51E | 51 | 15 | 21 | 21 |
25 | 22 | 16 | 61 | F | EID61F | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID61F | 61 | 16 | 22 | 22 |
26 | 23 | 17 | 71 | G | EID71G | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID71G | 71 | 17 | 23 | 23 |
27 | 26 | 1A | A1 | J | EIDA1J | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDA1J | A1 | 1A | 26 | 26 |
28 | 27 | 1B | B1 | K | EIDB1K | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDB1K | B1 | 1B | 27 | 27 |
29 | 28 | 1C | C1 | L | EIDC1L | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDC1L | C1 | 1C | 28 | 28 |
30 | 29 | 1D | D1 | M | EIDD1M | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDD1M | D1 | 1D | 29 | 29 |
31 | 30 | 1E | E1 | N | EIDE1N | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDE1N | E1 | 1E | 30 | 30 |
32 | 31 | 1F | F1 | O | EIDF1O | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDF1O | F1 | 1F | 31 | 31 |
33 | 32 | 20 | 02 | P | EID02P | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID02P | 02 | 20 | 32 | 32 |
34 | 33 | 21 | 12 | Q | EID12Q | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID12Q | 12 | 21 | 33 | 33 |
35 | 34 | 22 | 22 | A | EID22A | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID22A | 22 | 22 | 34 | 34 |
36 | 35 | 23 | 32 | B | EID32B | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID32B | 32 | 23 | 35 | 35 |
37 | 36 | 24 | 42 | C | EID42C | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID42C | 42 | 24 | 36 | 36 |
38 | 37 | 25 | 52 | D | EID52D | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID52D | 52 | 25 | 37 | 37 |
39 | 38 | 26 | 62 | E | EID62E | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID62E | 62 | 26 | 38 | 38 |
40 | 55,895 | DA57 | 75AD | Q | EID75ADQ | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID75ADQ | 75AD | DA57 | 55895 | 55895 |
41 | 55,896 | DA58 | 85AD | A | EID85ADA | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID85ADA | 85AD | DA58 | 55896 | 55896 |
42 | 55,897 | DA59 | 95AD | B | EID95ADB | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID95ADB | 95AD | DA59 | 55897 | 55897 |
43 | 55,898 | DA5A | A5AD | C | EIDA5ADC | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDA5ADC | A5AD | DA5A | 55898 | 55898 |
44 | 55,899 | DA5B | B5AD | D | EIDB5ADD | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDB5ADD | B5AD | DA5B | 55899 | 55899 |
45 | 55,901 | DA5D | D5AD | F | EIDD5ADF | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDD5ADF | D5AD | DA5D | 55901 | 55901 |
46 | 55,902 | DA5E | E5AD | G | EIDE5ADG | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDE5ADG | E5AD | DA5E | 55902 | 55902 |
47 | 55,903 | DA5F | F5AD | H | EIDF5ADH | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDF5ADH | F5AD | DA5F | 55903 | 55903 |
48 | 55,904 | DA60 | 06AD | I | EID06ADI | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EID06ADI | 06AD | DA60 | 55904 | 55904 |
49 | 337,052 | 5249C | C9425 | K | EIDC9425K | https://www.targetsmartvan.com/ContactsDetails.aspx?VANID=EIDC9425K | C9425 | 5249C | 337052 | 337052 |