Last active
December 28, 2016 09:13
-
-
Save Msirkovsky/23a297e665ca3e28dc4ac67e9040688c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let GetValue=(rangeName) => | |
let | |
CellRange = Excel.CurrentWorkbook(){[Name=rangeName]}[Content], | |
Value = CellRange{0}[Column1] | |
in | |
Value | |
in | |
let | |
SalesDate = GetValue("salesDateCell"), | |
Source = OData.Feed("https://localhost/web/odata/DataSalesForExcel?salesDate="&SalesDate) | |
in | |
Source |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment