├── .gitattributes ├── .gitignore ├── PowerQueryExtensions.sln ├── README.md ├── media └── Modules.png └── src ├── Date ├── Date.mproj ├── Date.pq └── README.md ├── List ├── List.mproj ├── List.pq └── README.md ├── Number ├── Number.mproj ├── Number.pq └── README.md ├── Splitter ├── README.md ├── Splitter.mproj └── Splitter.pq ├── Table ├── README.md ├── Table.mproj └── Table.pq ├── Text ├── README.md ├── Text.mproj └── Text.pq └── Value ├── README.md ├── Value.mproj └── Value.pq /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/.gitignore -------------------------------------------------------------------------------- /PowerQueryExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/PowerQueryExtensions.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/README.md -------------------------------------------------------------------------------- /media/Modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/media/Modules.png -------------------------------------------------------------------------------- /src/Date/Date.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Date/Date.mproj -------------------------------------------------------------------------------- /src/Date/Date.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Date/Date.pq -------------------------------------------------------------------------------- /src/Date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Date/README.md -------------------------------------------------------------------------------- /src/List/List.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/List/List.mproj -------------------------------------------------------------------------------- /src/List/List.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/List/List.pq -------------------------------------------------------------------------------- /src/List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/List/README.md -------------------------------------------------------------------------------- /src/Number/Number.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Number/Number.mproj -------------------------------------------------------------------------------- /src/Number/Number.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Number/Number.pq -------------------------------------------------------------------------------- /src/Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Number/README.md -------------------------------------------------------------------------------- /src/Splitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Splitter/README.md -------------------------------------------------------------------------------- /src/Splitter/Splitter.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Splitter/Splitter.mproj -------------------------------------------------------------------------------- /src/Splitter/Splitter.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Splitter/Splitter.pq -------------------------------------------------------------------------------- /src/Table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Table/README.md -------------------------------------------------------------------------------- /src/Table/Table.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Table/Table.mproj -------------------------------------------------------------------------------- /src/Table/Table.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Table/Table.pq -------------------------------------------------------------------------------- /src/Text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Text/README.md -------------------------------------------------------------------------------- /src/Text/Text.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Text/Text.mproj -------------------------------------------------------------------------------- /src/Text/Text.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Text/Text.pq -------------------------------------------------------------------------------- /src/Value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Value/README.md -------------------------------------------------------------------------------- /src/Value/Value.mproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Value/Value.mproj -------------------------------------------------------------------------------- /src/Value/Value.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugoberry/PowerQueryExtensions/HEAD/src/Value/Value.pq --------------------------------------------------------------------------------