Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
Anonymous
Not applicable

Expression.SyntaxError - Toke Comma Expected

Hello everyone.  I am trying to pull data from an external website into my excel file and I am getting a weird error message ->

Expression.SyntaxError: Token Comma expected.

 

Below is my below code and would really appreciate a new set of eyes on it to help identify where the error is coming from.  it looks like it may be on line 5 or 6.  Thanks!

 

let
Ticker= Excel.CurrentWorkbook(){[Name="Table1"]}[Content]{0}[Ticker1],
Source = Json.Document(Web.Contents("financialmodelingprep.com/api/v3/financial-ratios/" & Ticker & "?apikey=35c2f377815f4d1dd3d1654065134f33)),
ratios = Source[ratios],
#"Converted to Table" = Table.FromList(ratios, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Expanded Column1" = Table.ExpandRecordColumn(#"Converted to Table", "Column1", {"date", "investmentValuationRatios", "profitabilityIndicatorRatios", "operatingPerformanceRatios", "liquidityMeasurementRatios", "debtRatios", "cashFlowIndicatorRatios"}, {"date", "investmentValuationRatios", "profitabilityIndicatorRatios", "operatingPerformanceRatios", "liquidityMeasurementRatios", "debtRatios", "cashFlowIndicatorRatios"}),
#"Changed Type" = Table.TransformColumnTypes(#"Expanded Column1",{{"date", type date}, {"investmentValuationRatios", type any}, {"profitabilityIndicatorRatios", type any}, {"operatingPerformanceRatios", type any}, {"liquidityMeasurementRatios", type any}, {"debtRatios", type any}, {"cashFlowIndicatorRatios", type any}})
in
#"Changed Type"

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

It's the Source line. You're not closing the string at the end. You can see it from the colors in the editor and by clicking on "Show error" it will take you to the approximate area of the error, if not the exact place. You have

"?apikey=35c2f377815f4d1dd3d1654065134f33))

Where's the " to indicate the end of the string? Try

Source = Json.Document(Web.Contents("financialmodelingprep.com/api/v3/financial-ratios/" & Ticker & "?apikey=35c2f377815f4d1dd3d1654065134f33" ) ),

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs

Cheers 

SU18_powerbi_badge

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Anonymous 

It's the Source line. You're not closing the string at the end. You can see it from the colors in the editor and by clicking on "Show error" it will take you to the approximate area of the error, if not the exact place. You have

"?apikey=35c2f377815f4d1dd3d1654065134f33))

Where's the " to indicate the end of the string? Try

Source = Json.Document(Web.Contents("financialmodelingprep.com/api/v3/financial-ratios/" & Ticker & "?apikey=35c2f377815f4d1dd3d1654065134f33" ) ),

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs

Cheers 

SU18_powerbi_badge

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.