Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
lboldrino
Resolver I
Resolver I

Web Datasource with Parameter

I will take the data from 

https://www.oenb.at/zinssaetzewechselkurse/zinssaetzewechselkurse

vom: 01.01.2022 bis: Today()     (from: 01.01.2022 to: Today())

For Währung RON.  for (Currency: Ron)

 

Any Idea?

Best Greetings 🙂

 

 

2 REPLIES 2
lboldrino
Resolver I
Resolver I

im currently out of office. i will check it as soon as possible.

thanx. 🙂

v-henryk-mstf
Community Support
Community Support

Hi @lboldrino ,

 

You can try below steps:

vhenrykmstf_2-1660899445149.png

vhenrykmstf_1-1660899402133.png

choose data what you need

vhenrykmstf_0-1660899250708.png

let
    Source = Web.BrowserContents("https://www.oenb.at/zinssaetzewechselkurse/zinssaetzewechselkurse?lang=en&mode=zeitreihenzumeuro"),
    #"Extracted Table From Html" = Html.Table(Source, {{"Column1", "TABLE > * > TR > :nth-child(1)"}, {"Column2", "TABLE > * > TR > :nth-child(2)"}, {"Column3", "TABLE > * > TR > :nth-child(3)"}, {"Column4", "TABLE > * > TR > :nth-child(4)"}, {"Column5", "TABLE > * > TR > :nth-child(5)"}, {"Column6", "TABLE > * > TR > :nth-child(6)"}, {"Column7", "TABLE > * > TR > :nth-child(7)"}, {"Column8", "TABLE > * > TR > :nth-child(8)"}, {"Column9", "TABLE > * > TR > :nth-child(9)"}, {"Column10", "TABLE > * > TR > :nth-child(10)"}}, [RowSelector="TABLE > * > TR"]),
    #"Changed Type" = Table.TransformColumnTypes(#"Extracted Table From Html",{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}, {"Column4", type text}, {"Column5", type text}, {"Column6", type text}, {"Column7", type text}, {"Column8", type text}, {"Column9", type text}, {"Column10", type text}})
in
    #"Changed Type"

 

 

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.