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 am having issues when I try to combine Chris Webb's explanation on RelativePath with "Anonymous authentication" (works well when I use built in Power BI Basic authentication, and don't have to pass authentication in M)
When I pass this M code:
let
Source = Json.Document(Web.Contents("BaseURL", [RelativePath= #"DateParameter"],
[Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"
I receive: "Expression.Error: 3 arguments were passed to a function which expects between 1 and 2.".
Anyone able to help? Thanks.
Solved! Go to Solution.
Hi @EiA
You passed 3 arguments to Web.Contents...
let
Source = Json.Document(Web.Contents("BaseURL",
[
RelativePath= DateParameter,
Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]
])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"
Hi @EiA
You passed 3 arguments to Web.Contents...
let
Source = Json.Document(Web.Contents("BaseURL",
[
RelativePath= DateParameter,
Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]
])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!