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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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