Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
8 | |
8 | |
7 |
User | Count |
---|---|
17 | |
13 | |
7 | |
6 | |
6 |