Exporting Tasks to Excel Spreadsheet including hyperlinks in Notes section !!PLEASE HELP!!

Glove83

New Member
Joined
Oct 8, 2015
Messages
6
Hi Everyone,

I really hope someone can help as, if i cant get this, my project will take a huge hit or require a complete rethink.

I am trying to export my tasks from outlook 2010 to excel 2010. The tasks are created from emails a receive via an RSS (drag and dropped). I can export the tasks using the export function but this doesn't take through the hyperlink in the notes section of the task.

I've had some great help from this site before and am hoping you guys can come up trumps for me again.

Thanks,

Gary
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
After some digging around i found the following code that i use in conjunction with the CodeTwo Outlook exporter.

Code:
Sub CreateHyperlinks()


    Dim cell As Range


    For Each cell In Range("G2", Range("G" & Rows.Count).End(xlUp))
        If cell <> "" Then ActiveSheet.Hyperlinks.Add cell, cell.Value
    Next
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,492
Messages
6,125,116
Members
449,206
Latest member
burgsrus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top