• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

VBA - Data Extract from Website

AM742

New Member
Hi There,

I have an overdraft facility and have prepared a loan amortization schedule.

I am looking for VBA to extract overnight interest rates from central Bank's website to do interest calculations.

Can anyone assist me on this?

Thanks in advance for your time.

Regards
 
Using Power Query, the results and Mcode follow
Code:
let
    Source = Web.Page(Web.Contents("https://www.centralbank.ae/en/services/eibor-prices")),
    Data1 = Source{1}[Data]
in
    Data1
 

Attachments

  • PQ-Conversion.xlsx
    17.6 KB · Views: 6
Back
Top