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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

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