├── .DS_Store ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Function Template └── function-template.pq ├── Functions with extra documentations ├── Readme.md ├── create-DateKey │ ├── Readme.md │ ├── create-DateKey.pq │ └── create-DateKey_newVersion.pq ├── get-Storyous │ ├── get-StoryousAPIKey │ │ ├── Readme.md │ │ └── get-StoryousAPIKey.pq │ ├── get-StoryousDataOfMarketPlaceBillsByAPI │ │ ├── Readme.md │ │ └── get-StoryousDataOfMarketPlaceBillsByAPI.pq │ └── get-StoryousDataUniverzalWithoutRecursion │ │ ├── Readme.md │ │ └── get-StoryousDataUniverzalWithoutRecursion.pq └── get-TableOfUsersFromMicrosoftGraphAPI │ ├── Readme.md │ └── get-TableOfUsersFromMicrosoftGraphAPI.pq ├── Power BI REST API ├── .DS_Store └── Readme.md ├── Readme.md ├── get-AllMetadataOfSharepointFilesInclucindNestesFolders.pq ├── get-AllMyFunctionsFromGitHub.pq ├── get-AllWorldCountriesWithDetails.pq ├── get-ColoredExcelCells.pq ├── get-ConverterBetweenHEXandRGB.pq ├── get-CumulatedValueByCategoryAndPreviousDates.pq ├── get-DECtoBIN.pq ├── get-DataToJson.pq ├── get-EasterDate.pq ├── get-ExchangeRatesOfCZK.pq ├── get-ExtractYearsWithTwoMonthsWith5FIDAYSSATURDAYSSUDAYS.pq ├── get-InflaceZČNB.pq ├── get-JSONToText.pq ├── get-NumberColumnsCorrelation.pq ├── get-NumbersFromText.pq ├── get-RangeOfNumbers.pq ├── get-ServiceDeskIssuesDataFromJiraCloud.pq ├── get-TableOfLanguages.pq ├── get-WorkingMDBetweenDatesAndByWorkingHours.pq ├── get-exactDivergenceValueByMonths.pq ├── get-rgbTintModifier.pq ├── send-DataToPowerAutomateAsJSON.pq └── src └── img ├── DateKey-1.png ├── DateKey-2.png ├── DateKey-3.png ├── GetUserDataFromGraphAPI-1.png ├── GetUserDataFromGraphAPI-2.png ├── GetUserDataFromGraphAPI-3.png ├── GetUserDataFromGraphAPI-4.png ├── GetUserDataFromGraphAPI-5.png ├── GetUserDataFromGraphAPI-6.png ├── GetUserDataFromGraphAPI-7.png └── GetUserDataFromGraphAPI-8.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pq linguist-detectable=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tohleGitNeuvidi -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Function Template/function-template.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Function Template/function-template.pq -------------------------------------------------------------------------------- /Functions with extra documentations/Readme.md: -------------------------------------------------------------------------------- 1 | # Folder for All Functions that requires extra documentation 2 | -------------------------------------------------------------------------------- /Functions with extra documentations/create-DateKey/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/create-DateKey/Readme.md -------------------------------------------------------------------------------- /Functions with extra documentations/create-DateKey/create-DateKey.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/create-DateKey/create-DateKey.pq -------------------------------------------------------------------------------- /Functions with extra documentations/create-DateKey/create-DateKey_newVersion.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/create-DateKey/create-DateKey_newVersion.pq -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousAPIKey/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousAPIKey/Readme.md -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousAPIKey/get-StoryousAPIKey.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousAPIKey/get-StoryousAPIKey.pq -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousDataOfMarketPlaceBillsByAPI/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousDataOfMarketPlaceBillsByAPI/Readme.md -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousDataOfMarketPlaceBillsByAPI/get-StoryousDataOfMarketPlaceBillsByAPI.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousDataOfMarketPlaceBillsByAPI/get-StoryousDataOfMarketPlaceBillsByAPI.pq -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousDataUniverzalWithoutRecursion/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousDataUniverzalWithoutRecursion/Readme.md -------------------------------------------------------------------------------- /Functions with extra documentations/get-Storyous/get-StoryousDataUniverzalWithoutRecursion/get-StoryousDataUniverzalWithoutRecursion.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-Storyous/get-StoryousDataUniverzalWithoutRecursion/get-StoryousDataUniverzalWithoutRecursion.pq -------------------------------------------------------------------------------- /Functions with extra documentations/get-TableOfUsersFromMicrosoftGraphAPI/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-TableOfUsersFromMicrosoftGraphAPI/Readme.md -------------------------------------------------------------------------------- /Functions with extra documentations/get-TableOfUsersFromMicrosoftGraphAPI/get-TableOfUsersFromMicrosoftGraphAPI.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Functions with extra documentations/get-TableOfUsersFromMicrosoftGraphAPI/get-TableOfUsersFromMicrosoftGraphAPI.pq -------------------------------------------------------------------------------- /Power BI REST API/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Power BI REST API/.DS_Store -------------------------------------------------------------------------------- /Power BI REST API/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Power BI REST API/Readme.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/Readme.md -------------------------------------------------------------------------------- /get-AllMetadataOfSharepointFilesInclucindNestesFolders.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-AllMetadataOfSharepointFilesInclucindNestesFolders.pq -------------------------------------------------------------------------------- /get-AllMyFunctionsFromGitHub.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-AllMyFunctionsFromGitHub.pq -------------------------------------------------------------------------------- /get-AllWorldCountriesWithDetails.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-AllWorldCountriesWithDetails.pq -------------------------------------------------------------------------------- /get-ColoredExcelCells.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-ColoredExcelCells.pq -------------------------------------------------------------------------------- /get-ConverterBetweenHEXandRGB.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-ConverterBetweenHEXandRGB.pq -------------------------------------------------------------------------------- /get-CumulatedValueByCategoryAndPreviousDates.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-CumulatedValueByCategoryAndPreviousDates.pq -------------------------------------------------------------------------------- /get-DECtoBIN.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-DECtoBIN.pq -------------------------------------------------------------------------------- /get-DataToJson.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-DataToJson.pq -------------------------------------------------------------------------------- /get-EasterDate.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-EasterDate.pq -------------------------------------------------------------------------------- /get-ExchangeRatesOfCZK.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-ExchangeRatesOfCZK.pq -------------------------------------------------------------------------------- /get-ExtractYearsWithTwoMonthsWith5FIDAYSSATURDAYSSUDAYS.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-ExtractYearsWithTwoMonthsWith5FIDAYSSATURDAYSSUDAYS.pq -------------------------------------------------------------------------------- /get-InflaceZČNB.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-InflaceZČNB.pq -------------------------------------------------------------------------------- /get-JSONToText.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-JSONToText.pq -------------------------------------------------------------------------------- /get-NumberColumnsCorrelation.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-NumberColumnsCorrelation.pq -------------------------------------------------------------------------------- /get-NumbersFromText.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-NumbersFromText.pq -------------------------------------------------------------------------------- /get-RangeOfNumbers.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-RangeOfNumbers.pq -------------------------------------------------------------------------------- /get-ServiceDeskIssuesDataFromJiraCloud.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-ServiceDeskIssuesDataFromJiraCloud.pq -------------------------------------------------------------------------------- /get-TableOfLanguages.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-TableOfLanguages.pq -------------------------------------------------------------------------------- /get-WorkingMDBetweenDatesAndByWorkingHours.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-WorkingMDBetweenDatesAndByWorkingHours.pq -------------------------------------------------------------------------------- /get-exactDivergenceValueByMonths.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-exactDivergenceValueByMonths.pq -------------------------------------------------------------------------------- /get-rgbTintModifier.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/get-rgbTintModifier.pq -------------------------------------------------------------------------------- /send-DataToPowerAutomateAsJSON.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/send-DataToPowerAutomateAsJSON.pq -------------------------------------------------------------------------------- /src/img/DateKey-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/DateKey-1.png -------------------------------------------------------------------------------- /src/img/DateKey-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/DateKey-2.png -------------------------------------------------------------------------------- /src/img/DateKey-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/DateKey-3.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-1.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-2.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-3.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-4.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-5.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-6.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-7.png -------------------------------------------------------------------------------- /src/img/GetUserDataFromGraphAPI-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tirnovar/m-custom-functions/HEAD/src/img/GetUserDataFromGraphAPI-8.png --------------------------------------------------------------------------------