Skip to content

Commit

Permalink
more uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
artmg committed Mar 9, 2015
1 parent 9578203 commit 4e1233d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Closed.txt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
The following modules must remain closed source:

mod_exc_FileLocations

3 changes: 3 additions & 0 deletions Deprecate.txt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Here is a list of Modules which are deprecated:

mod_exc_ConsolidateWorksheets.bas
8 changes: 5 additions & 3 deletions mod_exc_LinksFiles.bas
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Const cStrModuleName As String = "mod_exc_LinksFiles"
' generic functions for manipulating filesystem objects
' and web and sharepoint sites and URLs
'
' 150309.AMG also get URL sub-address
' 150219.AMG added GetURL for hyperlinks
'

Expand All @@ -29,9 +30,10 @@ Function GetURL(rngCell As Range) As String
GetURL = Replace _
(rngCell.Hyperlinks(1).Address, "mailto:", "")

' credit http://excel.tips.net/T003281_Extracting_URLs_from_Hyperlinks.html
' GetURL = GetURL & "#" & rngCell.Hyperlinks(1).SubAddress

If rngCell.Hyperlinks(1).SubAddress <> "" Then
' credit http://excel.tips.net/T003281_Extracting_URLs_from_Hyperlinks.html
GetURL = GetURL & "#" & rngCell.Hyperlinks(1).SubAddress
End If
End If

End Function
Expand Down

0 comments on commit 4e1233d

Please sign in to comment.