Collection of VBA Links

Json Parsing and processing https://github.com/VBA-tools/VBA-JSON Sample to show how to run REST Requests from excel VBA https://codingislove.com/excel-json/ https://alexwohlbruck.github.io/cat-facts/docs/endpoints/facts.html Other Links GitHub – vba-blocks/vba-blocks: A package manager and build tool for VBA GitHub – VBA-tools/VBA-Web: VBA-Web: Connect VBA, Excel, Access, and Office for Windows and Mac to web services and the web Adding Items To A

Collection of VBA Links Read More »

Keyvault and Azure Functions

We want to manage secrets from within a portal developed azure function in c#. In the following we develop a function, which is able to save / update a secret into a keyvault This post was inspired by https://richardswinbank.net/adf/access_google_analytics_with_azure_data_factory Prerequisits We first create a resource group (here keyvaulttest) and within this 3 resources– a keyvault

Keyvault and Azure Functions Read More »

User Secrets in Visual Studio

Beside the normal project file based secrets Azure Function solution have another way of configuring user secrets.The project file contains the following property: The UserSecretsId can be found as directory name with a secrets.json file%appdata%\Microsoft\UserSecrets\e49ded1f-262d-428b-81bb-3fd6941e1261´\secrets.jsonThis contains the typical settings as else be found in local.settings.json: In addition there is also an option to open it

User Secrets in Visual Studio Read More »