I am trying to get the total distance (23,596) cell from the Away Games table fom this webpage into google sheets:
https://www.pro-football-reference.com/teams/nwe/2022_travel.htm
I am not able to import the cell properly using either IMPORTXML
or IMPORTHTML
I looked at source code of the page and tried to specify the class and/or the tagging of the specific cell but I wasn't able to get the right cell.
These are two examples of what I tried
=IMPORTXML("https://www.pro-football-reference.com/teams/nwe/2022_travel.htm", "[@id="total_mileage"]")
=IMPORTXML("https://www.pro-football-reference.com/teams/nwe/2022_travel.htm", "//td[@class='right iz']")
For everything I tried, I either got an error or an "NA" result.