Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iankitnegi/master-mlanguage
https://github.com/iankitnegi/master-mlanguage
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iankitnegi/master-mlanguage
- Owner: iankitnegi
- Created: 2024-12-13T09:11:40.000Z (26 days ago)
- Default Branch: main
- Last Pushed: 2024-12-13T10:14:03.000Z (25 days ago)
- Last Synced: 2024-12-13T10:39:21.906Z (25 days ago)
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Master M Language of Power Query
### How to create LIST {}:
List: ={1,2,3,4,5}
List 1 to 100: ={1..50}### How to create RECORD []:
= [A=1, B=2, C=3, D=4]### How to create TABLE ():
= #table(
{"Column1", "Column2", "Column3"},
{
{1, "A", true},
{2, "B", false},
{3, "C", true}
}
)### How to create Invoked Funn => :
= (x,y) => x+y/2
____________________________________### How to use Let & In Expression
let
// Define variables
Variable1 = 10,
Variable2 = 20,
Result = Variable1 + Variable2
in
// Return the result
Result