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
Terry2023
Frequent Visitor

How to reference a parameter in a new query

assistance with the follwoing would be appreciated.

 

I have created a date parameter which I wish to reference in the query

 

let
body = "{ ""dateRangeStart"": dateRangeStart, ""dateRangeEnd"": dateRangeEnd, ""detailedFilter"": { ""page"": ""1  ....... etc
in
Source

 

what do I need for these 2 to reference the parameters ?

 

 

Advanced editor.png

1 ACCEPTED SOLUTION
Terry2023
Frequent Visitor

SOLVED:

 

replaced entire Body string as a parametre rather than inserting multiple parameters into the string

 

let
body = Parameter
in
Source

View solution in original post

4 REPLIES 4
Terry2023
Frequent Visitor

SOLVED:

 

replaced entire Body string as a parametre rather than inserting multiple parameters into the string

 

let
body = Parameter
in
Source

Terry2023
Frequent Visitor

how to substitute 2 parametres?

 

let
dateRangeStart=dateRangeStart,
dateRangeEnd=dateRangeEnd,
body = "{ ""dateRangeStart"": ""2022-01-01T00:00:00.000"", ""dateRangeEnd"": ""2022-12-01T23:59:59.000"", ""detailedFilter"": { ""page"": ""1"", ""pageSize"": ""500"" } }", Source = Json.Document(Web.Contents("https://reports.api.clockufy.me/v1/workspaces/WORKSPACEID/reports/detailed", [ Headers = [#"Content-Type"="application/json"], Content=Text.ToBinary(body) ])),
timeentries = Source[timeentries],
#"Converted to Table" = Table.FromList(timeentries, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Expanded Column1" = Table.ExpandRecordColumn(#"Converted to Table", "Column1", {"_id", "description", "userId", "timeInterval" })
in
#"Expanded Column1"

Terry2023
Frequent Visitor

how to reference 2 parameters for a Source = Json.Document(Web.Contents

 

Terry2023_0-1677622728942.png

 

Terry2023
Frequent Visitor

fyi, i tried

= let
dateRangeStart=[dateRangeStart],
dateRangeEnd=[dateRangeEnd],
body = "{ ""dateRangeStart"": dateRangeStart, ""dateRangeEnd"": dateRangeEnd, ""detailedFilter"

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors
Top Kudoed Authors