# Injury Overview
The number of games that Eric Gordon has missed for each injury during the 2025-26 NBA season. The injury description is taken directly from the daily injury report on the day of the game.
%% DATAVIEW_PUBLISHER: start
```dataview
TABLE WITHOUT ID min(rows.D.injury) as Injury, length(rows.D.injury) as "Games Missed"
FROM "Daily"
FLATTEN data as D
Where D.player = "Eric Gordon" AND game_opponent AND season = "2025-26" AND D.dnp = "Yes"
GROUP BY D.injury
```
%%
| Injury | Games Missed |
| ------ | ------------ |
%% DATAVIEW_PUBLISHER: end %%
# Game log
A log of every time that Eric Gordon appeared on the injury report during the 2025-26 NBA season.
%% DATAVIEW_PUBLISHER: start
```dataview
TABLE D.status AS Status, game_opponent AS Opp, D.dnp as DNP, D.injury AS Injury
FROM "Daily"
FLATTEN data as D
WHERE D.player = "Eric Gordon" AND season = "2025-26"
SORT file.name DESC
```
%%
| File | Status | Opp | DNP | Injury |
| ---- | ------ | --- | --- | ------ |
%% DATAVIEW_PUBLISHER: end %%