ShiftyThor
New Member
- Joined
- Mar 4, 2013
- Messages
- 14
Good day All,
I need to extract data from an excel sheet and index them on another sheet to formulate results with handicaps etc. I am struggling on extracting the data:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Division[/TD]
[TD]Stage Number[/TD]
[TD]Name[/TD]
[TD]Hit Factor[/TD]
[/TR]
[TR]
[TD]Classic[/TD]
[TD]1[/TD]
[TD]Ira[/TD]
[TD]2.57[/TD]
[/TR]
[TR]
[TD]Classic[/TD]
[TD]2[/TD]
[TD]Ira[/TD]
[TD]0.97[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Jason[/TD]
[TD]5.36[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Troy[/TD]
[TD]5.29[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Paul[/TD]
[TD]5.18[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Dion[/TD]
[TD]2.80[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Dion[/TD]
[TD]5.36[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Jason[/TD]
[TD]3.67[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Paul[/TD]
[TD]3.39[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Troy[/TD]
[TD]1.61[/TD]
[/TR]
</tbody>[/TABLE]
I require the below output from the information above:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Division[/TD]
[TD]Stage 1[/TD]
[TD]Handicap[/TD]
[TD]Stage 2[/TD]
[TD]Handicap[/TD]
[/TR]
[TR]
[TD]Ira[/TD]
[TD]Classic[/TD]
[TD]2.57[/TD]
[TD](To be inputted)[/TD]
[TD]0.97[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Jason[/TD]
[TD]Standard[/TD]
[TD]5.36[/TD]
[TD](To be inputted)[/TD]
[TD]3.67[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Troy[/TD]
[TD]Standard[/TD]
[TD]5.29[/TD]
[TD](To be inputted)[/TD]
[TD]1.61[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Paul[/TD]
[TD]Standard[/TD]
[TD]5.18[/TD]
[TD](To be inputted)[/TD]
[TD]3.39[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Dion[/TD]
[TD]Standard[/TD]
[TD]2.8[/TD]
[TD](To be inputted)[/TD]
[TD]5.36[/TD]
[TD](To be inputted)[/TD]
[/TR]
</tbody>[/TABLE]
Basically this is an extract from a much larger database, we would require the persons names, and stage scores on one row taken from another sheet, and then work out handicaps at the end of the row. I am struggling with the extraction (other than a very long string with if's and else's. I am hoping there is a way with indexing and or matching. After the above is achieved, we can work on the rest of the formulae which is straight forward, and we can add more stages once we see if a formula is made in order for us to carry on.
Thanks in advance.
I need to extract data from an excel sheet and index them on another sheet to formulate results with handicaps etc. I am struggling on extracting the data:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Division[/TD]
[TD]Stage Number[/TD]
[TD]Name[/TD]
[TD]Hit Factor[/TD]
[/TR]
[TR]
[TD]Classic[/TD]
[TD]1[/TD]
[TD]Ira[/TD]
[TD]2.57[/TD]
[/TR]
[TR]
[TD]Classic[/TD]
[TD]2[/TD]
[TD]Ira[/TD]
[TD]0.97[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Jason[/TD]
[TD]5.36[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Troy[/TD]
[TD]5.29[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Paul[/TD]
[TD]5.18[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]1[/TD]
[TD]Dion[/TD]
[TD]2.80[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Dion[/TD]
[TD]5.36[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Jason[/TD]
[TD]3.67[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Paul[/TD]
[TD]3.39[/TD]
[/TR]
[TR]
[TD]Standard[/TD]
[TD]2[/TD]
[TD]Troy[/TD]
[TD]1.61[/TD]
[/TR]
</tbody>[/TABLE]
I require the below output from the information above:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Division[/TD]
[TD]Stage 1[/TD]
[TD]Handicap[/TD]
[TD]Stage 2[/TD]
[TD]Handicap[/TD]
[/TR]
[TR]
[TD]Ira[/TD]
[TD]Classic[/TD]
[TD]2.57[/TD]
[TD](To be inputted)[/TD]
[TD]0.97[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Jason[/TD]
[TD]Standard[/TD]
[TD]5.36[/TD]
[TD](To be inputted)[/TD]
[TD]3.67[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Troy[/TD]
[TD]Standard[/TD]
[TD]5.29[/TD]
[TD](To be inputted)[/TD]
[TD]1.61[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Paul[/TD]
[TD]Standard[/TD]
[TD]5.18[/TD]
[TD](To be inputted)[/TD]
[TD]3.39[/TD]
[TD](To be inputted)[/TD]
[/TR]
[TR]
[TD]Dion[/TD]
[TD]Standard[/TD]
[TD]2.8[/TD]
[TD](To be inputted)[/TD]
[TD]5.36[/TD]
[TD](To be inputted)[/TD]
[/TR]
</tbody>[/TABLE]
Basically this is an extract from a much larger database, we would require the persons names, and stage scores on one row taken from another sheet, and then work out handicaps at the end of the row. I am struggling with the extraction (other than a very long string with if's and else's. I am hoping there is a way with indexing and or matching. After the above is achieved, we can work on the rest of the formulae which is straight forward, and we can add more stages once we see if a formula is made in order for us to carry on.
Thanks in advance.