=cut Object The object in which you want to insert the hyperlink. Anchor The object the user will click to follow the hyperlink. This could be a section of text, a Range object, or a graphic. Address The address of the link, which can be a file path, a UNC path, or a URL. SubAddress (optional) A named location within the linked file ScreenTip (optional) A string that specifies the banner text that appears when the user hovers the mouse pointer over the link. If you omit this argument, the Address is displayed. TextToDisplay (optional) A string that specifies the hyperlink text that appears in the document. =cut my $object = $sel->Range; my $address ="$i"; my $subaddress ="subaddress"; my $screentip ="screentip"; my $texttodisplay ="texttodisplay"; ##Hyperlinks collection Add method to insert Hyperlinks into Word $sel->Hyperlinks->Add( $object,$address,$subaddress,$screentip,$texttodisplay);