Many functions will return NA if there is a single NA value unless you set the na.rm parameter to TRUE. For example, if your data frame is named DF and it has an Age column, you can run
mean(DF$Age, na.rm = TRUE)
to tell the mean function to ignore NA values.