Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default how to determine vba wise if a cell has a hyperlink

is there something like 'hasformula' or 'exists'?

jay
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 163
Default how to determine vba wise if a cell has a hyperlink

Hi Jay,

if ActiveCell.Hyperlinks.Count 1 then

--


Helmut Weber

Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 163
Default how to determine vba wise if a cell has a hyperlink



if ActiveCell.Hyperlinks.Count 0 !!!


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default how to determine vba wise if a cell has a hyperlink

Sub ifhyperlink()
For Each c In Selection
If c.Hyperlinks.Count 0 Then MsgBox c.Address
Next
End Sub

--
Don Guillett
SalesAid Software

"Jay Fincannon" wrote in message
...
is there something like 'hasformula' or 'exists'?

jay



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default how to determine vba wise if a cell has a hyperlink

thanky, thanky, thanky, don and helmut

Jay Atlanta Ga, USA

Sub ifhyperlink()
For Each c In Selection
If c.Hyperlinks.Count 0 Then MsgBox c.Address
Next
End Sub



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hyperlink to Determine if a Folder is Empty or Not Karen Excel Discussion (Misc queries) 0 May 22nd 09 02:17 PM
Can you determine if hyperlink points to empty folder? Denise Excel Discussion (Misc queries) 4 March 16th 08 01:57 AM
How to determine within a macro if a cell contains a hyperlink. Richard L. Miga Excel Discussion (Misc queries) 4 May 8th 07 12:32 PM
Data row wise, formula column wise Fred Smith Excel Discussion (Misc queries) 4 December 9th 05 03:48 PM
Delete row wise duplicates & colomun wise simultaneously excel Dipankar Excel Worksheet Functions 0 October 6th 05 01:14 PM


All times are GMT +1. The time now is 01:04 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"