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
roalexan
Employee
Employee

How to use selected slicer value as query parameter in web call

I'm a little blocked trying to figure out how to make a web service call using what the user selected in a slicer as the value of a query parameter. As a simplified example, say my web service takes a single JSON product id (pid), and returns a single JSON value (price), transforms it to a table, and shows it in the UI. I can create a query that does:

let
selected_pid_value = "a",
url = "<myurl>",
body = Json.FromValue([pid = selected_pid_value]),
Source = Json.Document(Web.Contents(url,[Headers = [#"Content-Type"="application/json"], Content = body ] )),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"

and this will work because I hard-coded the value for selected_pid_value. Now say I create a new table called "pid" using the following:

click: Enter Data
enter: a, b, c
type: Name: pid
click: Load

Create a slicer for it, and lastly create a measure for it using:

pid_value = SELECTEDVALUE(pid[Value])

Then, instead of hard-coding the value for selected_pid_value above, I use:

selected_pid_val = [pid_value],

This gives me the following error:

Expression.Error: There is an unknown identifier. Did you use the [field] shorthand for a _[field] outside of an 'each' expression?

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@roalexan 

 

You may take a look at the post below.

https://community.powerbi.com/t5/Desktop/How-do-I-Call-a-Power-Query-M-Function-from-a-DAX-Measure/m...

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
viji123
Frequent Visitor

Hi @roalexan ,

 

Were you able to pass the selected value from the slicer to the API call?

Stuck with the same issue.

Any help would be appreciated

 

Thanks

v-chuncz-msft
Community Support
Community Support

@roalexan 

 

You may take a look at the post below.

https://community.powerbi.com/t5/Desktop/How-do-I-Call-a-Power-Query-M-Function-from-a-DAX-Measure/m...

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Super User
Super User

Today you cannot do that...

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.