Joel, Need your help

F

fi.or.jp.de

Hi Joel,

I am using Excel vba for web automation.
You have given valuable information in my last post.
But I am not able to get that.

I have web, a table.
In a table there are some link which shows as 'multiple'

If i put web cursor it will show value.

I need copy those value into excel using vba.

'''HTML SOURCE CODE"""""""

<a href="javascript:eek:nMultipleBIANumLinkClick('XXXX_,_XX8')"
title="ABCD1234" id="bia_row_bia_num_155" name="a_iaa_tdBIANum">
Multiple (2)</a>


''''''''''''''''''''''''
Joel, I need what ever the value exist for title ie., ABCD1234.
 
J

Joel

I don't know if you will receive thsi message. the microsoft web user group
isn't sending out emails.

set biaNum = IE.document.getElementById("bia_row_bia_num_155")
there will be a title property either for this object or the parent object

msgbox(bianum.title)
or
msgbox(parentnode.bianum.title)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

web urgent 0
Web 0
Need help modifying code 0
excel and reqular expressions; what????? 1
VBA - (re-) Set a Table Style 2
Save as Text 1
IE automation 6
IE Automation 1

Top