All Projects → gsimardnet → PowerQueryNet

gsimardnet / PowerQueryNet

Licence: MIT license
Run M Language (Power Query Formula Language) from anywhere.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to PowerQueryNet

LibPQ
Detach your M code from workbooks to reuse it! Import modules from local or web storage (unlimited number of sources)
Stars: ✭ 55 (-62.33%)
Mutual labels:  excel, powerbi, powerquery
Power-Query-Excel-Formats
A collection of M code to get various formats from Excel sheets in Power Query
Stars: ✭ 43 (-70.55%)
Mutual labels:  excel, powerbi, powerquery
m-custom-functions
This library contains created mostly pure M-functions without any other languages.
Stars: ✭ 24 (-83.56%)
Mutual labels:  powerbi, powerquery
powerbi
Repository with links and files for using in PowerQuery and PowerBI
Stars: ✭ 32 (-78.08%)
Mutual labels:  powerbi, powerquery
Data-Science
Using Kaggle Data and Real World Data for Data Science and prediction in Python, R, Excel, Power BI, and Tableau.
Stars: ✭ 15 (-89.73%)
Mutual labels:  excel, powerbi
PowerBI-book-ru
Проект открытого методического пособия по Power BI, Power Query, Power Pivot
Stars: ✭ 76 (-47.95%)
Mutual labels:  powerbi, powerquery
datapackage-m
Power Query M functions for working with Tabular Data Packages (Frictionless Data) in Power BI and Excel
Stars: ✭ 26 (-82.19%)
Mutual labels:  excel, powerbi
PowerQueryConnectors
A collection of data connectors for Power BI
Stars: ✭ 30 (-79.45%)
Mutual labels:  powerbi, powerquery
flutter filereader
Flutter实现的本地文件(pdf word excel 等)查看插件,非在线预览
Stars: ✭ 101 (-30.82%)
Mutual labels:  excel
xltpl
A python module to generate xls/x files from a xls/x template.
Stars: ✭ 46 (-68.49%)
Mutual labels:  excel
PowerBI
This repository hosts well-written DAX formulas and tested Power BI PBIX samples with data sources.
Stars: ✭ 38 (-73.97%)
Mutual labels:  powerbi
mvp-monitor
📊 Microsoft MVPs Monitor
Stars: ✭ 30 (-79.45%)
Mutual labels:  powerbi
powerbi-embed-v2
Power BI Embedded with Custom Controls PoC
Stars: ✭ 34 (-76.71%)
Mutual labels:  powerbi
easy-excel
🚀 快速读写Excel文件,简单高效
Stars: ✭ 118 (-19.18%)
Mutual labels:  excel
Data-Visualisation-libraries
A Repository consisting of various visualisation libraries and tools
Stars: ✭ 61 (-58.22%)
Mutual labels:  powerbi
lazyExcel
a simply software like MS-Excel.it can be running muiti-platform...
Stars: ✭ 37 (-74.66%)
Mutual labels:  excel
Qxlnt
Use xlnt in Qt 5 or 6. xlnt is cross-platform user-friendly xlsx library for C++14.
Stars: ✭ 66 (-54.79%)
Mutual labels:  excel
BakingSheet
Easy datasheet management for C# and Unity. Supports Excel, Google Sheet, JSON and CSV format.
Stars: ✭ 144 (-1.37%)
Mutual labels:  excel
refinery
Refinery is a tool to extract and transform semi-structured data from Excel spreadsheets of different layouts in a declarative way.
Stars: ✭ 30 (-79.45%)
Mutual labels:  excel
rxjs-excel
RxJS demo of a simple excel app
Stars: ✭ 24 (-83.56%)
Mutual labels:  excel

PowerQueryNet

Run Power Query M formula language from anywhere.

About

PowerQueryNet allows you to run M formulas commonly used in Power BI and Excel (aka Get & Transform) from the Command Prompt or any .NET application.

Download

Installer: PowerQueryNet.msi

Dependency: PowerQuerySdk.vsix 1.0.0.16

(Upon installation PowerQuerySdk.vsix must be in the same folder as PowerQueryNet.msi)

Samples: PowerQueryNet.Samples.zip

PQNet

PQNet is a Command Line Interface (CLI) that comes with the installation of PowerQueryNet.

Features

Export the result of a query to several formats (CSV, JSON, HTML, XML)

pqnet "#Hello World.pq" -o json

Export the result of a query to a SQL Server database

pqnet "#Hello World.pq" -s "Data Source=.\SQL2016;Initial Catalog=AdventureWorks2012;Integrated Security=SSPI" -t "dbo.HelloWorld"

Output the result of a Power BI query to file

pqnet MyReport.pbix Query1 -o csv -f result.csv

Hello, World! - PQNet (CLI)

  1. Create a new file with the following content:
let Source = "Hello, World!" in Source
  1. Save the file as helloworld.pq
  2. Run the following in the Command Prompt:
pqnet helloworld.pq

Hello, World! - .NET (C#)

  1. From your .NET project, add a reference to PowerQueryNet.Client
  2. Run the following:
var qry = new Query { Formula = "let hw = \"Hello World\" in hw" };
var pqc = new PowerQueryCommand() { ExecuteOutputFlags = ExecuteOutputFlags.Csv };
var result = pqc.Execute(qry);

Power Query App

Run queries in a standalone application PowerQueryApp

Build requirements

  • Visual Studio 2015+

To build the Setup project, WiX Toolset must be installed.

Copyright

Copyright 2019

Licensed under the MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].