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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply

How to list down dynamic values via Documentation.AllowedValues in Power Query

Hi Power BI Community,

 

We are developing a custom connector in which we need to fetch a list of available tables via the web.contents are then displayed in Power BI UI for the end user to select any one.

But Documentation.AllowedValues is accepting only static values like {"Table1", Table2", "charts"}. Whereas we want to fetch these data from REST API dynamically and then display them. I am adding the code reference for the custom connector.

shared Connector.ContentsType = 
let
    response = getAllData(),
    tables = response[data],
    allowedValues = Table.Column(dataSources, "tableName"),

     type_name = type text meta [
			Documentation.FieldCaption = "Enter the table name",
            Documentation.AllowedValues = allowedValues
		],  
		CType = type function (dataSourceName as type_name) as table
in
    CType meta [
          Documentation.Description = "Enter Connector Information",   
          Documentation.DisplayName = ModuleName,
          Documentation.Name = ModuleName,
          Documentation.Caption = ModuleName
   ];

 
Any idea to tackle this would be helpful.

3 REPLIES 3
lbendlin
Super User
Super User

Web.Contents connectors are Import Mode only.  Can't do anything dynamically with them.

I agree. But I want to call it a web.contents REST API as soon as the connector is chosen and the user interface appears for "Table Name" entry.

Currently I am to call web.contents after username and password are entered. But my requirement is to call an api even before credential request UI.

If this is important to you please consider voting for an existing idea or raising a new one at https://ideas.fabric.microsoft.com/?forum=2d80fd4a-16cb-4189-896b-e0dac5e08b41

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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