Visual Basic - VBA
Bernard Adabankah

Get Last Column And Last Row Using VBA

Sometimes it is very necessary you get the last Column or last Row of your dataset in Excel This is a simple VBA code to get the Last Column and Last Row in your dataset Sub lastRow1() lastRow2 = Cells(Rows.Count, 2).End(xlUp).Row End Sub   What the above code does is that, we are using the

Read More »
Business Intelligence - BI
datapandasadmin

Superset Heroku Installation – Microsoft SQL Server Database Connection on Windows PC

 Clone this github repository into YOUR OWN repository and Edit the link in the  Readme.md file from https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/dugjason/superset-on-heroku to the link in YOUR OWN CLONED repository eg. https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/benadaba/hrmr Now scroll down and COMMIT (save) the changes ALSO edit the requirements.txt file and include any database requirements you want installed . eg pymssql==2.1.3, pyodbc==4.0.21 (this version was generating an

Read More »
Uncategorized
datapandasadmin

GDPR- What Is It ? Why You Should Be Concerned And What Actions To Take

GDPR stands for General Data Protection Regulation (GDPR) also referred to as the EU General Data Protection Regulation (GDPR).  According to the EUGDPR website , The EU General Data Protection Regulation (GDPR) is the most important change in data privacy regulation in 20 years. The EU General Data Protection Regulation (GDPR) replaces the Data Protection Directive 95/46/EC and was designed to harmonize

Read More »
Uncategorized
datapandasadmin

The sp_execute_external_script (Transact-SQL) Definition And Arguments

The sp_execute_external_script  system stored procedure is the stored procedure which invokes the external environment to run an external script (either Python or R ) in a T-SQL script. This is quite highlights of the sp_execute_external_script stored and some short notes on it.   let’s quickly look at the structure of the stored procedure sp_execute_external_script @language = N’language,

Read More »
Uncategorized
datapandasadmin

How to Install Whl Packages and Modules in Python

Sometimes, you might need some packages which do not come with the standard Python libraries and you would want to install them separately. You will notice how frustrating it is when you get stuck because of a package you are missing.   Sentdex on Youtube covers that accurately and you can watch him here:  

Read More »
Resources
datapandasadmin

SQLSaturday Manchester 15th July 2017 Event- My Experience

So I was at the SQLSaturday event in Manchester, United Kingdom on the 15th July 2017. According the SQLSaturday website, SQLSaturday is a training event for SQL Server professionals and those wanting to learn about SQL Server. Admittance to this event is free, and most costs are covered by donations and sponsorships.   I would,

Read More »
Data Science
datapandasadmin

Some Basic Introduction to Functions and Dates in R

R is a very powerful language used in Data Science, Data Analytics and Stastistics in general. Having a knowledge of how R works will really help in your data analysis projects. This short article takes a snappy look at basic structure of creating a function in R and also a peep at Dates in R.

Read More »