Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a column [URL] with a list of urls. I want to add an extra column that checks whether the URL is valid or not. I know that certain urls return a 400 error, but I can't seem to get an error to point that out.
This is the code I use:
= Table.AddColumn(#"Waarde vervangen", "status", each if [URL] ="" then "" else try Web.Contents([URL],[ManualStatusHandling={400,404}]))
(I tried with and without the option 'ManualStatusHandling', but with the same result.)
Any ideas or other ways to check whether the URL still works?
That's just half of the code. You now need to actually implement the manualstatushandling.
BUT! You can only do that in custom connectors.
Note
Extensions are able to use the ManualStatusHandling option with status codes 401 and 403, which is not something that can be done in Web.Contents calls made outside of a custom data connector (that is, directly from Power Query).
Handling status codes with Web.Contents for Power Query connectors - Power Query | Microsoft Learn
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 6 | |
| 5 | |
| 5 | |
| 2 |