vorrei riportare, tenendo conto delle data impostate, i commenti presenti nel foglio DB_17 in una scheda riassuntiva che il VBA dovrebbe generare nel foglio Report dal range C3:D3 in giù.
Come inizio ho provato ad importare almeno un commento a prescidere dalle date ma non ci sono riuscito:
- Codice: Seleziona tutto
Sub Reportcommenti()
Dim aCell As Range
Dim n As String
Dim oCmt As Comment
Dim ws As Workbook
Set sh1 = Worksheets("DB_17")
Set sh2 = Worksheets("Report")
Set aCell = sh1.Range("A4")
Set oCmt = aCell.Comment
If oCmt Is Nothing Then
Else
n = oCmt.Text
sh2.Range("E4").Value = n
End If
Set sh1 = Nothing
Set sh2 = Nothing
End Sub
Grazie per l'aiuto.
https://www.dropbox.com/s/nanh0wb6ibir2c0/Cuc_form_finale%20_FORUM.xlsm?dl=0