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 […]
[IPL] CSK Team Squad, Match Schedule
Chennai Super Kings or CSK is one of the most consistent performing teams in IPL. Along with Captain Dhoni & few unchanged players right from the start of IPL, the teams performance has never degraded. The fans have so much love for this team. Not only Dhoni, there are other […]
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, […]
Get Current Weather in Python – Free Openweathermap Api
Python – Weather Report for any City There is a similar article to this in which the weather report is obtained using Excel Vba code. To use this open weathermap Api , you have to first register with your email and get the AppId key. They provide a free limited […]
Current Local Weather Report in Excel
City Weather Report in Excel Excel Vba code in this page gets current local weather report using free api from openweathermap. To use this code, you need these things in advance: API key from openweathermap Accepted City Names Register with you email in the api provider website & they will […]
Python Sort List Function – Ascending or Descending
Sort Function in Python Code In Python, You can sort a list or array of numbers & strings using the built in function. The code below creates a numeric & string array. Then sorts is ascending & descending. The default is ascending. Lets see how do this with a Python […]
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 […]