As part of a large data set, 2 of my columns need to be combined with observations (from column A) replacing blanks (in column B), while at the same time having all observations from column B stay in the final output. To clarify further all observations from column A with the value "9" (only this value) need to be replaced by whatever is in Column B in the final output. Here is an example data: ID Column A Column B Desired output A1 1 . 1 A2 3 . 3 A3 4 . 4 A4 9 7 7 A5 9 7 7 A6 4 . 4 A7 6 . 6 A8 1 . 1 A9 9 8 8 Thanks!
... View more