Logo Home   Documents and Lists   Create   Site Settings   Help   
Icon
YDPages INC
Things you should know.
 
 
 
Select a View
All Links
 
 
Actions
  Alert me
  Export to spreadsheet
  Modify settings and columns
 
 
New New Item
|
Filter Filter
|
Change Order Change Order
|
Edit in Datasheet Edit in Datasheet
 
EditTechURLNotesFilter
EditMSSQL
Should I use a #temp table or a @table variable?
SQL Performance Hint
EditShopping
More Mac Vulnerabilities Than Windows In 2007?
DEstroy the myth
EditShopping
Why Windows, Answered here
EditWEB
Business Website - 10 Reasons Why
EditDEV
Technet Virtual Labs
EditDEV
MSDN Virtual Labs
EditShopping
FireFox Hacked - Open Source Flaw
Another example of why Open Source is a bad Idea from the onset. There is noone to provide a fix to these design flaws.
EditWEB
PDF 2011 Data Breach investications report
Editexcel
Extract a URL from an excel CELL
Answer:  Below is a function that you can include in your spreadsheet to extract the hyperlink address from a cell in Excel.


Function HyperLinkText(pRange As Range) As String


Dim ST1 As String
 Dim ST2 As String

If pRange.Hyperlinks.Count = 0 Then
    Exit Function
 End If

ST1 = pRange.Hyperlinks(1).Address
 ST2 = pRange.Hyperlinks(1).SubAddress

If ST2 <> "" Then
    ST1 = "[" & ST1 & "]" & ST2
 End If

HyperLinkText = ST1

End Function

Then you can reference this new function in your spreadsheet.
 For example in cell B1, you could enter the following:

=HyperLinkText(A1)
EditWEB
Can any outsourced component of an application be secure?