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

Rebuild this data combination message

I haven't been able to get past this error in my workspace:
kemppaik_0-1617112863890.png

How do I get past this?  I don't get an error on my desktop, just in the workspace.

 

This is my KB4TrainingCampaignsUserSettings Query.  Last step calls a function:

kemppaik_1-1617112863916.png

This is the function that is called:

kemppaik_2-1617112863879.png

I have just the one query and I've tried all possible privacy combinations:

kemppaik_3-1617113021535.png

 

Any guidance would be appreciated as I don't know where to proceed from here.

 

Thanks.

6 REPLIES 6
v-kelly-msft
Community Support
Community Support

Hi  @kemppaik ,

 

Check the similar thread posted before.

 

https://community.powerbi.com/t5/Service/Unable-to-combine-data-Please-rebuild-this-data-combination...

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

MisterFry
Resolver III
Resolver III

Ah, the formula firewall. 

The short version of what is happening is that Power BI is very helpfully attempting to stop you from inadvertently passing data from one data source into another source, which happens to be exactly what you want to do, and are deliberately doing. This is intended to safeguard folks from pulling privileged data from one system, and through Power Query's folding mechanism having this data pushed out to another external system without them knowing; inadvertently causing a security breach. 

 

The first thing to try in this case is to break your query into two pieces. I see that you've done this already with your source step being KB4TrainigCampaigns, but give this a try: 

In the query editor (not the advanced editor) on the applied steps, right-click on your custom function step, and select 'Extract Previous'. This is going to break your query into two pieces, the first being the transformations to your initial data, and the second being only the call to the external source.

 

In MOST cases, this is enough to eliminate the formula firewall issue.  

Doing this did not change anything. I am still getting the same error.

Ok, if this were a SQL datasource, you could get around it by using Value.NativeQuery; but it isn't. 

Bear with me, because my next suggestion sounds totally stupid, but it might work. Prior to your 'Source' step, try pulling the string out of the parameter, and THEN passing it to the API call. 

Something like:
this_campaign = CampaignId

and then refer to this_campaign instead of the parameter directly. 

My thinking here is that the engine is nesting your outer query into your inner query, which isn't allowed, so we're forcing it to evaluate first before passing the evaluated value into the API call. 

 

 

No joy.  Still encountering the same error.

I ran across this in the forums... 

https://community.powerbi.com/t5/Desktop/Formula-Firewall-Query-references-other-queries-so-it-may-n...

The actual question and answer aren't the interesting part. There is an anonymous answer (Message 26) 

They indicate that in order for multiple calls to Web.Contents to function correctly, they must be done in the SAME query. I assume that your source step for campaigns references another query that also makes a web.contents call to get the campaign IDs, which you are then iterating through to get the people. 

Try making both calls to Web.Contents in the same query, and breaking the data into two tables AFTER you've done all of the API calls.

the easiest way, I think, would be to do all of the calls and leave the people in the unexpanded column format, create 2 more queries referencing the first, in the one, keep the unexpanded people column, and expand that, and in the other drop the column and keep the campaigns.  

If it STILL doesn't work, try taking the steps of the custom function, and putting them directly inline in the single query, and see if that works. 

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