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
""" | |
Author: Sven Bosau | |
YouTube Channel: https://youtube.com/@codingisfun | |
Website: https://pythonandvba.com | |
Does this help you? Consider buying me a coffee here: | |
https://pythonandvba.com/coffee-donation | |
This script creates a new Excel workbook, adds data, inserts a VBA macro, and executes it using the xlwings library. The VBA macro generates a 3D pie chart from the data. | |
""" |
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
'Attribute VB_Name = "GetLocalOneDrivePath" | |
' | |
' Cross-platform VBA Function to get the local path of OneDrive/SharePoint | |
' synchronized Microsoft Office files (Works on Windows and on macOS) | |
' | |
' Author: Guido Witt-Dörring | |
' Created: 2022/07/01 | |
' Updated: 2024/07/08 | |
' License: MIT | |
' |
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
Option Explicit | |
'------------------------------------------------------------------------------ | |
' Module: URL Encode and Decode Functions | |
' Author: Jeremy Varnham | |
' Version: 1.1.0 | |
' Date: 22 August 2024 | |
' Description: This module provides two functions: URLEncode and URLDecode. | |
' These functions allow you to encode and decode URL strings, | |
' supporting ASCII, Unicode, and UTF-8 encoding. |
OlderNewer