So I have a table with player names and their stats (points, rebounds, etc).
Now, I have been inputting the names under the Name column manually.
But, I now created a query to retreive the player names for each team and created a named range for that list of names.
I put the named range in a column outside the table (because I cant populate a named range inside a table for some reason) and I can see the list of player names.
Then I want to reference(or populate) those names from that column to the "Name" column.
When I do that, it does take the names and puts them in the "Name" column in order but it messes up the stats retreival.
I use VLOOKUP according to the player name to retreive stats from another workbook that has all the player stats for the entire league.
This is to retreive the 3PM values for example.
But when the player name is not put manually but retreive from a side column using a named range, I get all zeros, as if it can't find the player name.
In this case I just did -
In the B2 cell and as you can see, it does put the player name there but all the VLOOKUP formulas, fail to retreive the stats for that name.
What am I doing wrong/missing here?
Any help would be appreciated, been trying so many ways to retreive the names and getting zero values each time.
Thanks in advance!
Now, I have been inputting the names under the Name column manually.
But, I now created a query to retreive the player names for each team and created a named range for that list of names.
I put the named range in a column outside the table (because I cant populate a named range inside a table for some reason) and I can see the list of player names.
Then I want to reference(or populate) those names from that column to the "Name" column.
When I do that, it does take the names and puts them in the "Name" column in order but it messes up the stats retreival.
I use VLOOKUP according to the player name to retreive stats from another workbook that has all the player stats for the entire league.
Excel Formula:
=IFERROR(VLOOKUP(B2,'C:\[stats.xls]sheet1'!$C$2:$R$455,7,FALSE),0)*C2
This is to retreive the 3PM values for example.
But when the player name is not put manually but retreive from a side column using a named range, I get all zeros, as if it can't find the player name.
In this case I just did -
Excel Formula:
=P2
What am I doing wrong/missing here?
Any help would be appreciated, been trying so many ways to retreive the names and getting zero values each time.
Thanks in advance!