Hi guys,
I have some VBA coding experience, but I am still an intermediate.
I face the following problem:
The HTML code of the data I want to scrape cannot be accessed by using getElemetbyID, getElementbyName, getElementsbyClassName or getElementsbyTagName
Does anyone know of another way to scrape the needed data?
The respective HTML code is:
Would be great if I could get a solution here on the forum
Thanks!
Tony
I have some VBA coding experience, but I am still an intermediate.
I face the following problem:
The HTML code of the data I want to scrape cannot be accessed by using getElemetbyID, getElementbyName, getElementsbyClassName or getElementsbyTagName
Does anyone know of another way to scrape the needed data?
The respective HTML code is:
VBA Code:
<div class="row-fluid b-margin financials clearfix">
<div class="span12">
<div class="row-fluid lgFinancials">
<div class="span6 specs">
<p class="price asking help odd">
<span class="title">Asking Price:</span>
<b>$99,900
<span class="help" title="The total asking price of the business for sale."><i class="fa fa-question-circle"></i></span></b>
</p>
</div><div class="span6 specs">
<p class="price help ">
<span class="title">Cash Flow:</span>
<b>$131,138
<span class="help" title="Arrived at by "starting with your net (before tax) profit. Then, add back in any payments made to the owner, interest and any depreciation of assets." For example, if the net profit before taxes was $100,000 and the owner was paid $70,000 then the cash flow is $170,000."><i class="fa fa-question-circle"></i></span></b>
</p>
</div>
</div>
<div class="row-fluid">
<div class="span6 specs">
<p class="help odd">
<span class="title">Gross Revenue:</span>
<b>$244,969
<span class="help" title="All income the business received before any cost-of-sales or expenses have been deducted."><i class="fa fa-question-circle"></i></span></b>
</p><p class="notDisclosed help ">
<span class="title">EBITDA:</span>
<b>N/A
<span class="help" title="Earnings Before Interest, Taxes, Depreciation and Amortization"><i class="fa fa-question-circle"></i></span></b>
</p><p class="help odd">
<span class="title">FF&E:</span>
<b>$16,000
<span class="help" title="Furniture, fixtures and equipment that will remain with the business, such as desks, office cubicles, decor elements of a restaurant or showroom, computers and office machines, pots and pans, dishes, display cases, manufacturing equipment, etc., depending on the type of business."><i class="fa fa-question-circle"></i></span></b>
</p>
</div>
Would be great if I could get a solution here on the forum
Thanks!
Tony