Carlos Figueira

Results 7 issues of Carlos Figueira

One test from Rand.txt assumes that numbers are decimal; this moves it to a separate file.

When working on #2066 I had to create a mocked Dataverse table, as there was nothing in the tests that did that. That is a big test hole that we...

Today it returns a decimal value, it should return a float value instead: ![image](https://github.com/microsoft/Power-Fx/assets/44986255/719e967f-3771-4f1f-bf37-9c3ff8ac473d)

The Calendar functions are missing from the C# interpreter

Some values should not be accepted, but they currently are. For example: ![image](https://github.com/user-attachments/assets/e5e2eca0-685a-4076-b581-11e0c71a6d34) is rejected on Excel, but "works" on the REPL: ![image](https://github.com/user-attachments/assets/da06be0c-7724-4df7-a6e1-08fd2cf9c2da)

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...