Sometimes my data is hidden and I need to get the values. I don't know how to use SUBTOTAL with a VLOOKUP or IF statement, otherwise it would be easy.
I'm trying to get only the visible scores for different players.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD]Aaron[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD]Bruce[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD]Charlie[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD]Aaron[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD]Danny[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD]Aaron[/TD]
[TD]30[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD]Aaron[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD]Freddie[/TD]
[TD]30[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD]Aaron[/TD]
[TD]10 / 25 / 30 / 20[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
For instance, in the following table for Aaron (A10) I get these results (B10): 10 / 25 / 30 / 20. With a VLOOKUP it would be easy.
However, I need to hide columns 1, 2, 3 and 4. Then for Aaron in this case I would get 30 / 20. For Bruce it would be "".
Without using VBA is there any chance to do it?
Thanks
I'm trying to get only the visible scores for different players.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD]Aaron[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD]Bruce[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD]Charlie[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD]Aaron[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD]Danny[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD]Aaron[/TD]
[TD]30[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD]Aaron[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD]Freddie[/TD]
[TD]30[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD]Aaron[/TD]
[TD]10 / 25 / 30 / 20[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
For instance, in the following table for Aaron (A10) I get these results (B10): 10 / 25 / 30 / 20. With a VLOOKUP it would be easy.
However, I need to hide columns 1, 2, 3 and 4. Then for Aaron in this case I would get 30 / 20. For Bruce it would be "".
Without using VBA is there any chance to do it?
Thanks