W
wayne
Given two columns, A and B, what's a good way to replace the contents of each cell in B with the contents of the adjoining cell in A, a space, and then the pre-existing contents of B? e.g., if A[5] contains "1.6.2" and B[5] contains "Requirements", then how do I get B[5] == "1.6.2 Requirements" (A is values of the dotted-digits form: 1, 1.1, 1.1.1, ...)
Ideally, if A is *already* a prefix of B, don't change anything ... but I can scrub those cases manually.
Ideally, if A is *already* a prefix of B, don't change anything ... but I can scrub those cases manually.