Mumbai Indians Team Schedule Date Time Day Team1 Team2 Venue 29-Mar 8 PM Sun CSK MI Mumbai 1-Apr 8 PM Wed SRH MI Hyderabad 5-Apr 4 PM Sun MI RCB Mumbai 8-Apr 8 PM Wed KXIP MI Punjab 12-Apr 8 PM Sun KKR MI Kolkata 15-Apr 8 PM Wed MI […]
[IPL2020] Kolkata Knight Riders Team – KKR Team Squad, Match Schedule
Kolkata Knight Riders Schedule Date Time Day Team1 Team2 Venue 31-Mar 8 PM Tue RCB KKR Bengaluru 3-Apr 8 PM Fri KKR DC Kolkata 6-Apr 8 PM Mon KKR CSK Kolkata 9-Apr 8 PM Thu RR KKR Guwahati 12-Apr 8 PM Sun KKR MI Kolkata 16-Apr 8 PM Thu SRH […]
[IPL2020] Kings XI Punjab Team – KXIP Squad, Match Schedule
Kings XI Punjab Team Squad Date Time Day Team1 Team2 Venue 30-Mar 8 PM Mon DC KXIP Delhi 4-Apr 8 PM Sat KXIP SRH Punjab 8-Apr 8 PM Wed KXIP MI Punjab 11-Apr 8 PM Sat CSK KXIP Chennai 14-Apr 8 PM Tue KXIP RCB Punjab 17-Apr 8 PM Fri […]
[IPL2020] Delhi Capitals Team – DC Squad, Match Schedule
Delhi capitals match schedule IPL 2020 Date Time Day Team1 Team2 Venue 30-Mar 8 PM Mon DC KXIP Delhi 3-Apr 8 PM Fri KKR DC Kolkata 5-Apr 8 PM Sun RR DC Guwahati 10-Apr 8 PM Fri DC RCB Delhi 13-Apr 8 PM Mon DC CSK Delhi 19-Apr 4 PM […]
Excel VBA change selection in Dropdown
[VBA] Change Selection – Update Drop Down List in Excel This does not require any special code. It can be done just by changing the value in the particular cell that has a validation list. Here is an example VBA code that changes the selection in a drop down validation […]
Convert Excel to Jpg Image – VBA Code
Export Excel Range to Image (jpg/png/gif) using Vba? This code ill convert the data in Excel workbook into a jpg image file as how it is displayed on screen. The image format can be jpg, png or gif. We have not tested if this supports other image formats as well, […]
Excel Vba Sort Array – Quick Trick using built in function
VBA Array Sort – Using Excel Sort In this page, we have given a Excel vba code snippet that works well for sorting array of 1 dimension. You can also customize & extend this code to work for 2 dimension array as well. We will publish the code for 2D […]
VBA – Create Array from Excel Range – 1 Dimension
Excel Macro – Create 1D Array from Vba Array This is one of the easy methods to initialize an array. If you convert data in worksheet directly to vba array, then it will create a 2d array by default. If you would like to convert Excel range to Array of […]
VBA Array Initialize Values – Split string to array
How to Initialize an Array in Vba? Different methods to assign values to array are explained here. Starting from basic to few easy methods to initialize array with multiple values are discussed in here. Here are the list of available methods. Direct or a loop method. Using VBA function Array. […]
VBA – Add Items to Array – Dynamic Resize without erasing data
How to add new item to existing array? In VBA, an array is always an fixed size of data values. If you have to add new item, then size of the field also has to be changed. Lets see an example: Consider you have an array like the below one: […]