Extract Text from Javascript thumbnails in Excel -


what trying take javascript hyperlink text in existing thumbnail, , extract 1 piece of information different cell. editing hyperlink or hovering on thumbnail shows this:

javascript: copyexistingcampaign('1234567890'); 

i'd extract number using vba macro enabled function, called campnum() i'm having trouble turning thumbnail data in cell. i've seen on stackoverflow doing things like:

function url(rg range) string dim hyper hyperlink set hyper = rg.hyperlinks.item(1) url = hyper.address end function 

and can use in worksheet, this:

=url(b4) 

can me figure out how translate pulling number? i'm close, still far. ._______. piece calls out number in argument?


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -