I have an excel workbook with multiple sheets that look like this:

I want to grab cell B14 and the data from columns C:N rows 19-27. My current code looks like this:
data = pd.read_excel(f, sheet_name=None, index_col=None, usecols="C:N", skiprows=18, nrows=8)
identifier = pd.read_excel(f, sheet_name=None, index_col=None, header=None, usecols="B", skiprows=13)
but I want to either combine this code to read B14 and the data at the same time, or read both separately and concatonate that data so I can set the Identifier as the index_col for the data frame.