powerquery-parser icon indicating copy to clipboard operation
powerquery-parser copied to clipboard

A parser for the Power Query / M formula language, written in TypeScript

Results 13 powerquery-parser issues
Sort by recently updated
recently updated
newest added

Hi, a user of powerqueryformatter.com filed [this issue](https://github.com/mogulargmbh/m-formatter/issues/15) with me a couple of days. He outlines that he cannot name the column of a table type with just a digit...

bug

Hello, In https://github.com/microsoft/powerquery-parser/blob/master/specification.md, the following deviation from the M language spec is mentioned: > * The field-specification construct requires an identifier. Instead identifer is replaced with generalized-identifier. The spec currently...

Custom Query example: with data as (#(lf)select *#(lf)exclude (total_aum_1, total_aum_2)#(lf), total_aum_1 * 1000000 as total_aum_1#(lf), total_aum_2 * 1000000 as total_aum_2#(lf)from db.funds.evestment_equity#(lf) )#(lf) select *,#(lf) CASE WHEN as_of_date = (SELECT MAX(as_of_date)...

enhancement