Fetching Comments from a closed work book

G

gauravsinha.15

Hi,
I want to fetch comments from a closed work book. How can this be
done?

Thanks,
 
J

JP

You could use VBA to silently open the workbook, then use

Workbooks("mybook.xls").Sheets(1).Range("A1").Comment.Text

to retrieve the comment text from a particular cell.


HTH,
JP
 
Top