    def format_row(v)
      return nil unless v
      ((float = Float(v)) && (float % 1.0 == 0) ? float.to_i : float) rescue v
    end