USD Index Code for live data query

MPFX2022

New Member
Joined
Nov 24, 2022
Messages
10
Office Version
  1. 365
Platform
  1. Windows
Hi All,
Does anyone know what code, OR if its actually available, for the US dollar index using live data query in excel.
Ive tried just about every combo of USD/DXY USDX etc etc..
If anyone has found what it is I would be grateful 👃
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Using Power Query, I was able to extract the following

Book6
AB
1Column1Column2
2Open106.19
3Day High106.35
4Day Low106.14
5Prev Close106.15
652 Week High107.35
752 Week High Date10/03/23
852 Week Low99.58
952 Week Low Date07/14/23
10YTD % Change4.81
111 Year % Change4.38
Sheet1


Power Query:
let
    Source = Web.BrowserContents("https://www.cnbc.com/quotes/.DXY"),
    #"Extracted Table From Html" = Html.Table(Source, {{"Column1", ".SplitStats-name"}, {"Column2", ".SplitStats-price"}}, [RowSelector=".SplitStats-item"])
in
    #"Extracted Table From Html"
 
Upvote 0

Forum statistics

Threads
1,215,221
Messages
6,123,701
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top