Pivot Table in Excel

The Pivot Table is one of the most powerful features in Excel. It is an interactive way to quickly summarize large amounts of data. A PivotTable report is useful to summarize, analyze, explore, and present summary data. So let’s get started with how to create Pivot table. Our dataset consists of 15 rows and 6…

Call Server Side Method from client-side scripts – II

Let’s continue with previous article i.e. invoking server side method through client side script. If you haven’t read the first part of this article please go here. In this article I will show how we can use XMLHttpRequest to call the server side method. This article is divided in 3 different sections which are mentioned…

Circular References in Excel

A circular reference is created when we refer to same cell either directly or indirectly. A circular reference can have a significant impact on performance because it can iterate indefinitely. Iteration is the repeated recalculation of a worksheet until a specific numeric condition is met. By Default, Iterative calculations are turned off in excel. Common…

Using Cell References in Formulas

Today we will learn about cell references, cell reference refers to a cell or a range of cells on a worksheet and can be used in a formula so that Microsoft Office Excel can find the values or data that you want that formula to calculate. Following are the three types of cell references Using…

Call Server Side Method from client-side scripts – I

In this article, I am going to show how to call or invoke server- side method using client-side script in ASP.NET. I have divided the article in 2 parts each containing three related ways of doing, which is listed below. 1. PageMethod, JavaScript and JQuery Ajax Using PageMethods Using JQuery Ajax Using JQuery Ajax with…

Text to Column in Excel

Text to Column is a feature in excel from which we can separate text in a cell with comma, spaces, tab or any other special characters into multiple columns. Let’s see an example to understand how it works. I have list of names with commas in column A, refer the below screenshot. 1. Select the…

Using the VLOOKUP and HLOOKUP Functions

Today in this article, we will see VLOOKUP & HLOOKUP which are the most useful, yet most mis-understood function in Excel. Function searches for a value in the first column of a table array and returns a value in the same row from another column in the table array. The V in VLOOKUP stands for…

Create Dependent Drop-down lists in excel

In today’s article, we will see how to create dependent drop-down lists in excel. When we select one of the Countries, we get the list of cities of the respective country in other drop-down. To create these dependent drop-down lists, execute the following steps. 1. On second sheet, create the following named ranges. For creating…

How to insert/update/delete in gridview (CRUD)

Gridview is the most basic and important control to display data in dot net based application. I have been using this control from very long time in many of my projects it may be windows or web based applications. Many of you will also agree that this is “bread and butter” of any applications. But…

Add or Remove items from Drop-down list in Excel

Today we will discuss one of the common and very useful feature in excel, how to add or edit existing drop-down list in excel. One of the major advantages of having drop-down list is to improve the efficiency of data entry, while limiting data entry to specific set of items resulting into less error prone…