All Projects → nathanhere → Excel-VBA-Data-Functions

nathanhere / Excel-VBA-Data-Functions

Licence: MIT License
Excel VBA Functions Package for Business Data Analysts. VBA has a reputation among some for being a "step child" programming language, however it enables practitioners to deliver real value to their local business units quickly.

Programming Languages

vba
158 projects

Projects that are alternatives of or similar to Excel-VBA-Data-Functions

Excelize
Golang library for reading and writing Microsoft Excel™ (XLSX) files.
Stars: ✭ 10,286 (+23277.27%)
Mutual labels:  analytics, excel
olliePy
OlliePy is a python package which can help data scientists in exploring their data and evaluating and analysing their machine learning experiments by utilising the power and structure of modern web applications. The data scientist only needs to provide the data and any required information and OlliePy will generate the rest.
Stars: ✭ 46 (+4.55%)
Mutual labels:  analytics
svelte-sheets
Blazing fast excel sheets in the browser, hugely inspired by JExcel, built with Svelte and XLSX.
Stars: ✭ 45 (+2.27%)
Mutual labels:  excel
Covid-19-analysis
Analysis with Covid-19 data
Stars: ✭ 49 (+11.36%)
Mutual labels:  analytics
Social-Media-Monitor
Automatically monitor and log fan counters from social media(Facebook Pages, Twitter, Instagram, YouTube, Google+, OneSignal, Alexa) using APIs to Google Spreadsheet. Very useful for website admins and social media managers.
Stars: ✭ 36 (-18.18%)
Mutual labels:  analytics
office-addin-angular
To help you learn to use Office.js and Angular build an Excel add-in
Stars: ✭ 16 (-63.64%)
Mutual labels:  excel
craXcel-cli
Command line application to unlock Microsoft Office password protected files.
Stars: ✭ 44 (+0%)
Mutual labels:  excel
grafana-infinity-panel
Grafana Infinity Panel plugin. Visualize data in infinite ways using data viz APIs such as Vega
Stars: ✭ 17 (-61.36%)
Mutual labels:  analytics
Stop.Google.Analytics.Ghost.Spam.HOWTO
How to stop Google Analytics "Ghost" Spam using a well curated list of spam referrer domains and web sites. Simple and easy to use with instructions for creating Segments in Google Analytics using our google-exclude files.
Stars: ✭ 21 (-52.27%)
Mutual labels:  analytics
Addax
Addax is an open source universal ETL tool that supports most of those RDBMS and NoSQLs on the planet, helping you transfer data from any one place to another.
Stars: ✭ 615 (+1297.73%)
Mutual labels:  excel
simple-excel
Generate excel sheets in Java
Stars: ✭ 85 (+93.18%)
Mutual labels:  excel
analytics reading list
a collection of books, articles, and tutorials to learn and apply analytics
Stars: ✭ 16 (-63.64%)
Mutual labels:  analytics
WinAnalytics
A light-weight android library that can be quickly integrated into any app to use analytics tools.
Stars: ✭ 23 (-47.73%)
Mutual labels:  analytics
web-analytics-handbook
Handbook - Rendezvous between developers and web data
Stars: ✭ 23 (-47.73%)
Mutual labels:  analytics
ExcelReads
ExcelReads(简单Excel通用读写器)
Stars: ✭ 46 (+4.55%)
Mutual labels:  excel
Comuni-Italiani-2018-Sql-Json-excel
DATABASE dei COMUNI ITALIANI 2018 PROVINCE, REGIONI, COMUNI CON CAP e COORDINATE GEOGRAFICHE
Stars: ✭ 87 (+97.73%)
Mutual labels:  excel
Credit
An example project that predicts risk of credit card default using a Logistic Regression classifier and a 30,000 sample dataset.
Stars: ✭ 18 (-59.09%)
Mutual labels:  analytics
open-semantic-desktop-search
Virtual Machine for Desktop Search with Open Semantic Search
Stars: ✭ 22 (-50%)
Mutual labels:  analytics
XToolset
Typed import, and export XLSX spreadsheet to JS / TS. Template-based create, render, and export data into excel files.
Stars: ✭ 110 (+150%)
Mutual labels:  excel
excel-date-to-js
Convert Excel date in integer format into JS date. Dates are stored as numbers in Excel and count the number of days since January 0, 1900 (1900 standard, for mac it is 1904, which means January 0, 1904 is the start date). Times are handled internally as numbers between 0 and 1.
Stars: ✭ 26 (-40.91%)
Mutual labels:  excel

Excel Logo Banner

Excel VBA Functions Package for Business Data Analysts

Created to facilitate data processing and analysis at the business operations level. Common functions used for Excel-based projects / reports / apps requiring extensive data manipulation.

Drag and drop the .bas file as a module in the VBA editor.

Requires a basic understanding of how to use functions within VBA. For an overview, please visit http://www.excel-vba-easy.com/vba-programming-function-sub.html or http://www.excelfunctions.net/VBA-Functions-And-Subroutines.html.

Note that most functions included in this package require a worksheet object as the first argument.

Example using the lastRow function:

If the last row of data is located on row 15, this routine will select cells A1:C15

Set ws = workbooks("currentOpenWorkbook.xlsx").worksheets("Sheet1")
ws.cells(lastRow(ws),3).select

Where lastRow(ws) returns the last row number of worksheet ws, and 3 is Column C (the third column in a worksheet).

Please feel free to contact me for any help/clarification.

License

This software is available 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].