Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am getting a "token comma exprected" error message - position in color. Could it be a misplaced bracket? Thanks a million.
let
Source = Xml.Tables(Web.Contents(“https://isams-XXXXXXXXX”, Headers=[#"Content-Type"="application/xml"],
Content=Text.ToBinary("
<Filters>
<SchoolReports>
<Records IDsToInclude="3750" />
<ReportCycles ReportTerm="1" ReportCycleType="0" ReportYear="2020,2021" />
</SchoolReports>
</Filters>
")
]))
in
Source
Solved! Go to Solution.
Looks like you are missing the [ in front of Headers.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
this is not working for me !!
Hi @AnjaW ,
Please check if this works:
let
Source = Xml.Tables(Web.Contents("https://isams-XXXXXXXXX", [Headers=[#"Content-Type"="application/xml"],
Content=Text.ToBinary("
<Filters>
<SchoolReports>
<Records IDsToInclude=""3750"" />
<ReportCycles ReportTerm=""1"" ReportCycleType=""0"" ReportYear=""2020,2021"" />
</SchoolReports>
</Filters>
")
]))
in
Source
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Looks like you are missing the [ in front of Headers.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.