In the field I could type: The sky is blue most of the time but not at
night......... when I save, it automatically gets numbered (which is
hidden) - if it was the first feedback it would be listed 1 if it was the
30th comment it would be given the number 30 and so on. So what I need is
your formula with the feedback associated with the number - so I have a
column A which is numerical and column B with the text associated with
column A.
OK that makes some sense now.
Let's say your data is on Sheet1, and your summary will be on sheet2.
Try the following, on the Summary sheet:
A1: =LARGE(Sheet1!$A:$A,ROWS($1:1))
B1: =INDEX(Sheet1!$B:$B,MATCH(A1,Sheet1!$A:$A,0))
Select A1:B1 and fill down for as many comments as you want.
If you don't have enough comments (e.g. you pull down 4 and only have two comments), you will get an error returned by the formula.
If you have Excel 2007 or later, you can handle it by changing the formulas to:
A1: =IFERROR(LARGE(Sheet1!$A:$A,ROWS($1:1)),"")
B1: =IFERROR(INDEX(Sheet1!$B:$B,MATCH(A1,Sheet1!$A:$A,0)),"")