↓ Skip to Main Content
Useful code Programming with VBA, C# and Python

Main Navigation

  • All
  • VBA
    • VBA Tools
    • VBA Online Resources
    • All VBA articles
  • Python
  • Else
    • C#
  • Reviews
    • List of reviews
  • YouTube
  • PayPal
  • About
Useful code Programming with VBA, C# and Python

Off Canvas Menu

  • All
  • VBA
    • VBA Tools
    • VBA Online Resources
    • All VBA articles
  • Python
  • Else
    • C#
  • Reviews
    • List of reviews
  • YouTube
  • PayPal
  • About

Month: December 2014

Home › 2014 › December
Excel – Usage of Checkmark with formulas and custom formatting
Else - Just Tricks

Excel – Usage of Checkmark with formulas and custom formatting

Vitosh Dec 28, 2014 Tagged with custom formatting, Excel, usage of checkmarks, Wingdings 2, without VBA

Plenty of times, when I open some someones Excel files I see something as a check column, where you have only “YES” and “No” as values. They check something and if you are used to it, it can be quite …

Excel – Usage of Checkmark with formulas and custom formatting Read more →

VBA – Set a shorcut for VBA sub procedure (macro) in Excel
VBA \ Excel

VBA – Set a shorcut for VBA sub procedure (macro) in Excel

Vitosh Dec 25, 2014 Tagged with VBA

There are a few ways to set a shortcut for a macro. The easiest one is through the menu Developer> Macros > Options, select the macro and write the shortcut: However, there is a better way to do this – with …

VBA – Set a shorcut for VBA sub procedure (macro) in Excel Read more →

VBA – Sum Values Entered in Excel Cell without Formula
VBA \ Excel

VBA – Sum Values Entered in Excel Cell without Formula

Vitosh Dec 24, 2014 Tagged with sum values in excel, VBA

For a reason, you may wish to simply add a value in an excel cell and to have it automatically summed with the value, that was previously present in the cell. This can be valuable, if you are building some …

VBA – Sum Values Entered in Excel Cell without Formula Read more →

VBA – Load Web Page from Excel
VBA \ Excel

VBA – Load Web Page from Excel

Vitosh Dec 21, 2014 Tagged with excel vba, internet from excel, load page from excel, load web page

Sometimes you may wish to load a web page from Excel. Just for fun. Then you have probably googled it and you realized that the command “ActiveSheet.QueryTables.Add” exists. Then you simply decided to try it but, something did not happen …

VBA – Load Web Page from Excel Read more →

VBA – Create a toggle button with code
VBA \ Excel

VBA – Create a toggle button with code

Vitosh Dec 20, 2014

Sometimes, you may want a button to perform different actions. It is quite easy to make one with an On/Off, but when you would like to make a button, performing 4 different actions in VBA, the story goes a little …

VBA – Create a toggle button with code Read more →

VBA – Usage of Classes and Properties
VBA \ Excel

VBA – Usage of Classes and Properties

Vitosh Dec 17, 2014 Tagged with Properties, Usage of classes, VBA

VBA is an object-oriented language. As such, it is quite OK to create classes and to assign properties to these classes there. In the current article I will show how to create a class “clsPC” with three properties – Processor, Video …

VBA – Usage of Classes and Properties Read more →

VBA – Drawing objects with VBA in Excel
VBA \ Excel

VBA – Drawing objects with VBA in Excel

Vitosh Dec 11, 2014 Tagged with drawing objects in VBA, VBA

How much time do you need to build something like this in Excel? At least 20 minutes + a lot of lost nerves for the formatting. Unless you use VBA and you build it within some seconds 🙂 Pretty much …

VBA – Drawing objects with VBA in Excel Read more →

VBA – Working with external files in Excel
VBA \ Excel

VBA – Working with external files in Excel

Vitosh Dec 10, 2014 Tagged with External files in excel, VBA

Every VBA programmer needs to know how to extract data from and to separate files. This is a really valuable knowledge, if you are building MS Office app, which is to be used by a third-party. In the current article I …

VBA – Working with external files in Excel Read more →

VBA Excel – String between two strings
VBA \ Excel

VBA Excel – String between two strings

Vitosh Dec 8, 2014 Tagged with len, string between strings, string instr, VBA

Today I was looking for a solution, giving me the option to locate a string, defined between two strings. Pretty much the story of any developer’s life. So, I found a really useful resource, which helped me to build my …

VBA Excel – String between two strings Read more →

C# – Building classes in C# – Video
C Sharp Tricks

C# – Building classes in C# – Video

Vitosh Dec 7, 2014 Tagged with building classes with C#, C#

In this article I present the second solution from the homework from SoftUni – www.softUni.bg – concerning classes in C#. This is the task: Define a class Laptop that holds the following information about a laptop device: model, manufacturer, processor, RAM, …

C# – Building classes in C# – Video Read more →

C# – Defining Classes Homework from SoftUni – Video
C Sharp Tricks

C# – Defining Classes Homework from SoftUni – Video

Vitosh Dec 5, 2014

In the current article, I will show you the code of a solution of one homework from the SoftUni (www.softuni.bg). The solution is built in YouTube and you may take a look at it, if you want to hear me speaking …

C# – Defining Classes Homework from SoftUni – Video Read more →

VBA – create a log sheet of Excel with specific actions
VBA \ Excel

VBA – create a log sheet of Excel with specific actions

Vitosh Dec 4, 2014 Tagged with Excel, file log, log file, log sheet, VBA

When you work with professionally built VBA tool, sometimes logging your actions (or the actions of some colleague) if the file is shared, can be of use. The idea is not to go into spying, but simply to check who …

VBA – create a log sheet of Excel with specific actions Read more →

VBA – VBA class modules for buttons
VBA \ Excel

VBA – VBA class modules for buttons

Vitosh Dec 2, 2014 Tagged with module for buttons, VBA class

Code reusability is important in any programming language. The main idea is to write as little as possible for easier maintenance. And, as it sometimes happens, writing less is much more difficult, than writing a lot. In the current article, …

VBA – VBA class modules for buttons Read more →

VBA – usage of user defined types
VBA \ Excel

VBA – usage of user defined types

Vitosh Dec 1, 2014 Tagged with Arrays, user defined types, VBA

    Probably you have heard something about PHP. If you have, then you know that it supports arrays (and lists and anything you like) and you may declare any type of data in these. In VBA, usually the case …

VBA – usage of user defined types Read more →

Copyright © 2026 VitoshAcademy