Hello!
I've been working on this for what seems like days. Ultimately, I'm wanting to know how to quickly grab data from a link via Web Query, then edit that data with a script or macro. End goal is to identify fantasy football draft trends:
Web Query: Completed Draft - Fantasy Football Calculator
Results look like:
[TABLE="width: 264"]
<tbody>[TR]
[TD="align: left"]Jamaal[/TD]
[TD="align: left"]Arian[/TD]
[TD="align: left"]LeVeon[/TD]
[/TR]
[TR]
[TD="align: left"]Charles[/TD]
[TD="align: left"]Foster[/TD]
[TD="align: left"]Bell[/TD]
[/TR]
[TR]
[TD="align: left"]RB (KC) 9[/TD]
[TD="align: left"]RB (HOU) 9[/TD]
[TD="align: left"]RB (PIT) 11[/TD]
[/TR]
[TR]
[TD="align: left"]LeSean[/TD]
[TD="align: left"]Matt[/TD]
[TD="align: left"]Andrew[/TD]
[/TR]
[TR]
[TD="align: left"]McCoy[/TD]
[TD="align: left"]Forte[/TD]
[TD="align: left"]Luck[/TD]
[/TR]
[TR]
[TD="align: left"]RB (BUF) 8[/TD]
[TD="align: left"]RB (CHI) 7[/TD]
[TD="align: left"]QB (IND) 10[/TD]
[/TR]
[TR]
[TD="align: left"]Alshon[/TD]
[TD="align: left"]Mike[/TD]
[TD="align: left"]T.Y.[/TD]
[/TR]
[TR]
[TD="align: left"]Jeffery[/TD]
[TD="align: left"]Evans[/TD]
[TD="align: left"]Hilton[/TD]
[/TR]
[TR]
[TD="align: left"]WR (CHI) 7[/TD]
[TD="align: left"]WR (TB) 6[/TD]
[TD="align: left"]WR (IND) 1[/TD]
[/TR]
</tbody>[/TABLE]
Whereas the preferred edit would be:
[TABLE="width: 500, align: center"]
<tbody>[TR]
[TD]JAMAAL CHARLES RB (KC) 9[/TD]
[TD]ARIAN FOSTER RB (HOU) 9[/TD]
[TD]LEVEON BELL RB (PIT) 11[/TD]
[/TR]
[TR]
[TD]LESEAN MCCOY RB (BUF) 8[/TD]
[TD]MATT FORTE RB (CHI) 7[/TD]
[TD]ANDREW LUCK QB (IND) 10[/TD]
[/TR]
[TR]
[TD]ALSHON JEFFERY WR (CHI) 7[/TD]
[TD]MIKE EVANS WR (TB) 6[/TD]
[TD]T.Y. HILTON WR (IND) 10[/TD]
[/TR]
</tbody>[/TABLE]
I understand that =CONCATENATE(A1, " ", A2, " ", A3) will accomplish this, however as you can see from the table, the editing for each query will take a long time as there is typically 450 cells to edit AND if the formula is dragged, it will add A2, A3, A4 on the next cell, instead of A4, A5, A6. Is there a script that I can add which will quickly combine cells as mentioned above? And is there a way to automate this process where say it will go to this site(Completed Mock Drafts - Fantasy Football Calculator) and grab the first 5 or 10 and create a new work sheet for each?
I know it can be done, but I know next to nothing about coding.
I am a first time poster, I was unable to access the etiquette page prior to posting. If these should be reformatted, I will happily do so.
I've been working on this for what seems like days. Ultimately, I'm wanting to know how to quickly grab data from a link via Web Query, then edit that data with a script or macro. End goal is to identify fantasy football draft trends:
Web Query: Completed Draft - Fantasy Football Calculator
Results look like:
[TABLE="width: 264"]
<tbody>[TR]
[TD="align: left"]Jamaal[/TD]
[TD="align: left"]Arian[/TD]
[TD="align: left"]LeVeon[/TD]
[/TR]
[TR]
[TD="align: left"]Charles[/TD]
[TD="align: left"]Foster[/TD]
[TD="align: left"]Bell[/TD]
[/TR]
[TR]
[TD="align: left"]RB (KC) 9[/TD]
[TD="align: left"]RB (HOU) 9[/TD]
[TD="align: left"]RB (PIT) 11[/TD]
[/TR]
[TR]
[TD="align: left"]LeSean[/TD]
[TD="align: left"]Matt[/TD]
[TD="align: left"]Andrew[/TD]
[/TR]
[TR]
[TD="align: left"]McCoy[/TD]
[TD="align: left"]Forte[/TD]
[TD="align: left"]Luck[/TD]
[/TR]
[TR]
[TD="align: left"]RB (BUF) 8[/TD]
[TD="align: left"]RB (CHI) 7[/TD]
[TD="align: left"]QB (IND) 10[/TD]
[/TR]
[TR]
[TD="align: left"]Alshon[/TD]
[TD="align: left"]Mike[/TD]
[TD="align: left"]T.Y.[/TD]
[/TR]
[TR]
[TD="align: left"]Jeffery[/TD]
[TD="align: left"]Evans[/TD]
[TD="align: left"]Hilton[/TD]
[/TR]
[TR]
[TD="align: left"]WR (CHI) 7[/TD]
[TD="align: left"]WR (TB) 6[/TD]
[TD="align: left"]WR (IND) 1[/TD]
[/TR]
</tbody>[/TABLE]
Whereas the preferred edit would be:
[TABLE="width: 500, align: center"]
<tbody>[TR]
[TD]JAMAAL CHARLES RB (KC) 9[/TD]
[TD]ARIAN FOSTER RB (HOU) 9[/TD]
[TD]LEVEON BELL RB (PIT) 11[/TD]
[/TR]
[TR]
[TD]LESEAN MCCOY RB (BUF) 8[/TD]
[TD]MATT FORTE RB (CHI) 7[/TD]
[TD]ANDREW LUCK QB (IND) 10[/TD]
[/TR]
[TR]
[TD]ALSHON JEFFERY WR (CHI) 7[/TD]
[TD]MIKE EVANS WR (TB) 6[/TD]
[TD]T.Y. HILTON WR (IND) 10[/TD]
[/TR]
</tbody>[/TABLE]
I understand that =CONCATENATE(A1, " ", A2, " ", A3) will accomplish this, however as you can see from the table, the editing for each query will take a long time as there is typically 450 cells to edit AND if the formula is dragged, it will add A2, A3, A4 on the next cell, instead of A4, A5, A6. Is there a script that I can add which will quickly combine cells as mentioned above? And is there a way to automate this process where say it will go to this site(Completed Mock Drafts - Fantasy Football Calculator) and grab the first 5 or 10 and create a new work sheet for each?
I know it can be done, but I know next to nothing about coding.
I am a first time poster, I was unable to access the etiquette page prior to posting. If these should be reformatted, I will happily do so.