I would use Rule Engine node first to create new column that will have month name in same row where month name is now and missing values (denoted in KNIME with red question mark) where numbers are. There are multiple ways to do it. Here are two. First with wildcards and second with regex:
NOT ($column1$ LIKE "?" OR $column1$ LIKE "??") => $column1$
$column1$ MATCHES "[a-zA-z]+" => $column1$
Note about Rule Engine node: “If no rule matches, the outcome is missing value.”
Then use Missing Value node with Previous value option