So I have a row of cells that have questions
Blah | blah2 | blah3 ||| blah73
I'd like to make it so it looks like this
Q1: Blah | Q2: Blah2 |||| Q73: blah73
How do I do this in excel without having to do it manually?
In an empty row:
="Q" & Column(A:A) & " " & A1
Where A1 is the first cell in the row with Blah
. You only need to change the A1 to the first cell and drag across