Power-Fx icon indicating copy to clipboard operation
Power-Fx copied to clipboard

Power Fx low-code programming language

Results 179 Power-Fx issues
Sort by recently updated
recently updated
newest added

This check applies only to `Patch(DS, table_of_rows_with_updates)` `Patch(DS, record_with_keys_and_updates)` Issue https://github.com/microsoft/Power-Fx/issues/2619.

Breaking Language

How do you properly patch a lookup field. for example, I just want to have a ribbon action that one click assigns a case for users. Patch( Accounts, Self.Selected.Item, {...

We don't support Remove() overload in C# interpreter, we should implement this for better parity across Power Fx hosts. `Remove( DataSource, Table [, RemoveFlags.All ] )`

LowCodePlugins

Defaults function has not yet been implemented in Core. We need to revisit [this code](https://github.com/microsoft/Power-Fx/blob/0089d2f8db4b0726dbb9cc9810f7381ec37e8d4c/src/libraries/Microsoft.PowerFx.Core/Texl/Builtins/Patch.cs#L322) when it is implemented. https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-defaults

LowCodePlugins

We should not be adding TexlFunctions in C# interpreter engine which are not supported at runtime. Rather we should investigate the feasibility of showing this at error Authoring time. e.g....

LowCodePlugins

In Excel, we have WORKDAY function which returns a number that represents a date that is the indicated number of working days before or after a date (the starting date)....

good first issue

See https://github.com/microsoft/Power-Fx/blob/main/src/libraries/Microsoft.PowerFx.Core/Public/Values/CollectionTableValue.cs

For comma cultures (french, spanish), space here is illegal token: `Sum(123, 456)` But error message is very confusing as to why. We should give a more helpful error message. That...

We should be able to mix/match decimal and float numbers in the order table argument. Some examples: - `SortByColumns( [{A:1}, {A:3}, {A:2}], A, [3,2,1] )` - simple case, it works...