<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2137726452698956582</id><updated>2012-02-16T17:49:19.721+05:30</updated><category term='Creating Presentation using VBA'/><category term='Create Slides using VBA'/><category term='VBA Saving Powerpoint'/><category term='Add Slides VBA'/><category term='Add Text Box to Slide'/><category term='Download'/><category term='Automate TextBox'/><category term='Automate Powerpoint'/><category term='Powerpoint VBA'/><title type='text'>MS Excel &amp; VBA Macros</title><subtitle type='html'>Excel is so powerful that nobody knows everything about it. If you use Excel frequently, you probably run into situations, from entering data to calculating complex workbooks, that slow you down.This blog won't solve unique problems, but they will help you complete common tasks more efficiently.
This blog will provide you ebooks and useful spreadsheets from time to time which will help you to solve your issues quickly. You can join our google group or ORKUT Community also for more stuff.Thanks.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>34</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-8700454647078414019</id><published>2011-01-05T22:57:00.000+05:30</published><updated>2011-01-05T22:57:17.402+05:30</updated><title type='text'>Using Custom Format for Numbers, Dates and Text</title><content type='html'>&lt;b&gt;&lt;a href="http://www.excelitems.com/2011/01/custom-cell-formatting-number-date-text.html"&gt;Click here to read full article on 'Custom' Format.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What is 'Custom Format' ?:&lt;/b&gt; Microsoft Office Excel provides many  built-in number formats, but in some cases they do not meet our needs,  we can customize a built-in number format to create our own.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why 'Custom Format' and not 'Conditional Formatting'?:&lt;/b&gt; because to  cure 'Common Cold' we go to doctors not surgeons. Exactly, when there  is a simple and robust way then why to go otherwise. There are many  benefits of using custom format including these:&lt;br /&gt;1. Less overhead than Conditional Formatting.&lt;br /&gt;2. Values can be used easily in formulas (Less manipulation required).&lt;br /&gt;3. Charts looks better with custom colored labels/axis.&lt;br /&gt;4. Works on all versions of Excel.&lt;br /&gt;and many more which you can figure out using your innovative mind after reading this article.&lt;a name="more"&gt;&lt;br /&gt;&lt;br /&gt; &lt;b&gt;Examples:&lt;/b&gt;&lt;br /&gt;Let's move with some examples of various data. Essentially, examples makes this subject simple.&lt;br /&gt;  &lt;b&gt;I - BASIC EXAMPLES&lt;/b&gt;&lt;br /&gt;&lt;/a&gt; &lt;table style="background-color: rgb(239, 239, 255); text-align: center;" width="100%" border="1" cellpadding="3" cellspacing="1"&gt; &lt;tbody&gt; &lt;tr&gt;   &lt;td&gt;&lt;b&gt; COMMENTS &lt;/b&gt;&lt;/td&gt;   &lt;td&gt;&lt;b&gt;TO DISPLAY&lt;/b&gt;&lt;/td&gt;   &lt;td&gt;&lt;b&gt;    AS    &lt;/b&gt;&lt;/td&gt;   &lt;td&gt;&lt;b&gt; USE THIS &lt;/b&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt; Leading Zeros&lt;/td&gt;   &lt;td&gt;26&lt;/td&gt;   &lt;td&gt;0026&lt;/td&gt;   &lt;td&gt;0000&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt;Phone Number&lt;/td&gt;   &lt;td&gt;9999404843&lt;/td&gt;   &lt;td&gt;999-940-4843&lt;/td&gt;   &lt;td&gt;000-000-0000&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt;Day of the Date&lt;/td&gt;   &lt;td&gt;26/05/1984&lt;/td&gt;   &lt;td&gt;Saturday&lt;/td&gt;   &lt;td&gt;dddd&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt;Month of the Date&lt;/td&gt;   &lt;td&gt;26/05/1984&lt;/td&gt;   &lt;td&gt;May&lt;/td&gt;   &lt;td&gt;mmmm&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt;Comma Place holder &lt;/td&gt;   &lt;td&gt;23456789&lt;/td&gt;   &lt;td&gt;23,456,789&lt;/td&gt;   &lt;td&gt;#, ###&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;   &lt;td&gt;Currency&lt;/td&gt;   &lt;td&gt;2605.5&lt;/td&gt;   &lt;td&gt;€ 2,605.50&lt;/td&gt;   &lt;td&gt;€ #,###.00&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;  &lt;/table&gt; &lt;a name="more"&gt;&lt;br /&gt; &lt;/a&gt;&lt;b&gt;&lt;a href="http://www.excelitems.com/2011/01/custom-cell-formatting-number-date-text.html"&gt;Click here to read full article on 'Custom' Format including intermediate and advanced examples with theory and logic.&lt;/a&gt;&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-8700454647078414019?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.excelitems.com/2011/01/custom-cell-formatting-number-date-text.html' title='Using Custom Format for Numbers, Dates and Text'/><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/8700454647078414019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=8700454647078414019&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8700454647078414019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8700454647078414019'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2011/01/using-custom-format-for-numbers-dates.html' title='Using Custom Format for Numbers, Dates and Text'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-6244319953012737139</id><published>2010-12-31T00:11:00.000+05:30</published><updated>2010-12-31T00:11:09.400+05:30</updated><title type='text'>SHRINK REDUCE EXCEL FILE SIZE</title><content type='html'>If minor or little changes in your excel workbook bloated its size to 200% and above then it's a serious issue but not worry issue as it has solution.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Understand the problem:&lt;/b&gt; First understand the difference between 'Excel Default Last Cell' and 'Actual Last Cell'. When you do 'Ctrl+End' to find last cell, you'll reach to 'Excel Default Last Cell' which may be the 'Actual Last Cell' or beyond the 'Actual Last Cell'. The more beyond 'Excel Default Last Cell' would be from 'Actual Last Cell', the more unnecessary size of excel workbook would it be having.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Solution:&lt;/b&gt; Delete all rows and columns beyond the 'Actual Last Cell' in every worksheet. If there are too many worksheets and large sets of data, you can use the VBA macro mentioned on &lt;a href="http://www.excelitems.com/"&gt;eXceLiTems.com&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.excelitems.com/2010/11/shrink-reduce-excel-file-size.html"&gt;Read full article on reducing excel workbook size using VBA&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-6244319953012737139?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.excelitems.com/2010/11/shrink-reduce-excel-file-size.html' title='SHRINK REDUCE EXCEL FILE SIZE'/><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/6244319953012737139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=6244319953012737139&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6244319953012737139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6244319953012737139'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2010/12/shrink-reduce-excel-file-size.html' title='SHRINK REDUCE EXCEL FILE SIZE'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-5861918313322252985</id><published>2010-12-29T23:56:00.001+05:30</published><updated>2010-12-30T00:00:12.012+05:30</updated><title type='text'>3 Things to remember before Excel VBA Job Interview</title><content type='html'>Like giving interview is a skill, taking interview is another great skill. Ashish Jain have taken many interviews in the past and given more than he has taken and here he is sharing the content from his experience. Your interview experience may be totally different than he has mentioned here but you must be aware of it and should not miss some common things mentioned here. These are his personal views and have nothing to do any of his past or present employers.&lt;br /&gt;&lt;br /&gt;If a good interviewer will conduct an interview, he will not probe your technical knowledge only but also how much logical and reasoning thinking you possess along with some programming etiquette. You must remember these 3 things are interviewed in a good Excel and VBA job interview for Analyst position:&lt;br /&gt;1. General Programming Attitude&lt;br /&gt;2. Knowledge of Excel Object Model&lt;br /&gt;3. Excel Knowledge (Data Validation, Subtotal, Formulas etc.)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.excelitems.com/2010/12/excel-vba-job-interview-questions.html"&gt;Read the full article here written by Ashish Jain on eXceLiTems.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-5861918313322252985?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/5861918313322252985/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=5861918313322252985&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/5861918313322252985'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/5861918313322252985'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2010/12/excel-vba-job-interview.html' title='3 Things to remember before Excel VBA Job Interview'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-7488392987910112562</id><published>2010-12-28T23:50:00.000+05:30</published><updated>2010-12-28T23:50:35.054+05:30</updated><title type='text'>50 Excel VBA Oral Interview Questions</title><content type='html'>These Excel VBA Interview questions are being posted keeping in mind that reader is aware of working with VBA, have some programming and MS Excel background and is aware of terminologies. This question bank is helpful for both Interviewee and Interviewer as it provides a quick channel of questions and answers covering major topics of Excel and VBA.&lt;br /&gt;&lt;br /&gt;If you're looking for a job in MIS/Automation/Dashboard creation etc. as a Business Analyst, Senior Analyst, Associate Analyst, etc involving MS Excel, MS Access, VBA, SQL, Cognos, ASP.NET etc then &lt;a href="http://www.excelitems.com/2010/12/analyst-excel-access-sql-mis-jobs.html"&gt;Click here on 'Excel VBA Job Postings'&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;a href="http://www.excelitems.com/2010/12/excel-vba-interview-questions.html"&gt;&lt;b&gt;&lt;center&gt;Click here to read all the 50 questions and answers.&lt;/center&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 01.  What is the difference between ByVal and ByRef and which is default ?&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution: ByRef:&lt;/b&gt; If you pass an argument by reference when calling a procedure the procedure access to the actual variable in memory. As a result the variable's value can be changed by the procedure.&lt;br /&gt;&lt;b&gt;ByVal:&lt;/b&gt; If you pass an argument by value when calling a procedure the variable's value can be changed with in the procedure only outside the actual value of the variable is retained.&lt;br /&gt;&lt;b&gt;ByRef is default:&lt;/b&gt; Passing by reference is the default in VBA. If you do not explicitly specify to pass an argument by value VBA will pass it by reference.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 02.  What is the meaning of Option Explicit and Option Base?&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; Option Explicit makes the declaration of Variables Mandatory while Option Base used at module level to declare the default lower bound for array subscripts. For eg. Option Base 1 will make the array lower bound as 1 instead of 0.&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;&lt;a name="more"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 03.  What are various data type and their size?&lt;/b&gt;&lt;/div&gt;Solution:&lt;br /&gt;i)   The &lt;b&gt;Boolean &lt;/b&gt;data type has only two states, True and False. These types of variables are stored as 16-bit (2 Byte) numbers, and are usually used for flags.&lt;br /&gt;ii)  The &lt;b&gt;Byte &lt;/b&gt;data type is an 8-bit variable which can store value from 0 to 255.&lt;br /&gt;iii) The &lt;b&gt;Double &lt;/b&gt;data type is a 64-bit floating point number used when high accuracy is needed.&lt;br /&gt;iv)  The &lt;b&gt;Integer &lt;/b&gt;data type is a 16-bit number which can range from -32768 to 32767. Integers should be used when you are working with values that can not contain fractional numbers. In case, you're working over 32767 rows use Long as data type.&lt;br /&gt;v)   The &lt;b&gt;Long &lt;/b&gt;data type is a 32-bit number which can range from -2,147,483,648 to 2,147,483,647.&lt;br /&gt;vi)  The &lt;b&gt;Single &lt;/b&gt;data type is a 32-bit number ranging from -3.402823e38 to -1.401298e-45 for negative values and from 1.401298e-45 to 3.402823e38 for positive values. When you need fractional numbers within this range, this is the data type to use.&lt;br /&gt;vii) The &lt;b&gt;String &lt;/b&gt;data type is usually used as a variable-length type of variable. A variable-length string can contain up to approximately 2 billion characters. Each character has a value ranging from 0 to 255 based on the ASCII character set.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 04.  Difference between ActiveWorkbook and ThisWorkbook.&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; ThisWorkbook refers to the workbook where code is being written while ActiveWorkbook refers to the workbook which is in active state with active window. In case of only one workbook open, ActiveWorkbook is same as ThisWorkbook.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 05.  Code to find a Last used Row in a column or Last used column of a Row.&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; Last Row in a column can be find using End(xlUp) and Last Column in a row can be find using End(xlToLeft). For e.g. Range("A1048576").End(xlUp).Row gives last used row of Column A.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 06.  Difference between ActiveX and Form Controls.&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution: &lt;/b&gt;&lt;br /&gt;i) Forms controls can be used on worksheets and chart sheets. Forms controls can also be placed within embedded charts in Classic Excel (though not in Excel 2007). ActiveX controls can only be used on worksheets. ActiveX controls do not work in MacExcel.&lt;br /&gt;ii) The Forms controls aren’t very complicated, and they have been part of Excel for longer (they were used in Excel 5/95’s dialog sheets) than the Controls Toolbox (Excel 97), so it stands to reason that they’d be more seamlessly integrated. Being newer, the ActiveX controls have richer formatting possibilities. Both can link to cells and ranges in the worksheet.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 07. What is the difference b/w Functions and Subroutines?&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution: &lt;/b&gt;&lt;br /&gt;i)  Subroutines never return a value but functions does return values.&lt;br /&gt;ii) A function could not change the values of actual arguments whereas a subroutine could change them.&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 08.  How to debug a VBA code?&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; Using Breakpoints(F9), Step-by-step execution (F8), Debug.Print &amp;amp; Immediate Window and Watch window.&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 09.  Draw basic Excel Object Model.&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; Application --&gt; Workbooks --&gt; Worksheets --&gt; Range / Chart&lt;br /&gt;&lt;br /&gt;&lt;div style="color: blue;"&gt;&lt;b&gt;Ques 10.  What are properties, methods, events and objects?&lt;/b&gt;&lt;/div&gt;&lt;b&gt;Solution:&lt;/b&gt; For details click here --&gt; http://msdn.microsoft.com/en-us/library/ms172576%28VS.80%29.aspx&lt;br /&gt;All the controls in the ToolBox except the Pointer are &lt;b&gt;objects &lt;/b&gt;in Visual Basic. These objects have associated properties, methods and events.&lt;br /&gt;A &lt;b&gt;property &lt;/b&gt;is a named attribute of a programming object. Properties define the characteristics of an object such as Size, Color etc. or sometimes the way in which it behaves.&lt;br /&gt;A &lt;b&gt;method &lt;/b&gt;is an action that can be performed on objects. For example, a cat is an object. Its properties might include long white hair, blue eyes, 3 pounds weight etc. A complete definition of cat must only encompass on its looks, but should also include a complete itemization of its activities. Therefore, a cat's methods might be move, jump, play, breath etc.&lt;br /&gt;Visual Basic programs are built around &lt;b&gt;events&lt;/b&gt;. Events are various things that can happen in a program. Let us consider a TextBox control and a few of its associated events to understand the concept of event driven programming. The TextBox control supports various events such as Change, Click, MouseMove and many more that will be listed in the Properties dropdown list in the code window for the TextBox control. We will look into a few of them as given below.&lt;br /&gt;*      The code entered in the Change event fires when there is a change in the contents of the TextBox&lt;br /&gt;*      The Click event fires when the TextBox control is clicked.&lt;br /&gt;*      The MouseMove event fires when the mouse is moved over the TextBox&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.excelitems.com/2010/12/excel-vba-interview-questions.html"&gt;&lt;b&gt;&lt;center&gt;Click here to read all the 50 questions and answers.&lt;/center&gt;&lt;/b&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-7488392987910112562?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.excelitems.com/2010/12/excel-vba-interview-questions.html' title='50 Excel VBA Oral Interview Questions'/><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/7488392987910112562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=7488392987910112562&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7488392987910112562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7488392987910112562'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2010/12/50-excel-vba-oral-interview-questions.html' title='50 Excel VBA Oral Interview Questions'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-7121621925586692963</id><published>2010-12-27T23:21:00.000+05:30</published><updated>2010-12-27T23:21:38.932+05:30</updated><title type='text'>Excel 2003 Style Menu in Excel 2007/2010</title><content type='html'>I really don't want to write this article as I'm in love with new interface of Excel 2007 and wants my blog readers and every excel user to understand the new Ribbon Menu structure than to go back and use Excel 2003 style menu in Excel 2007. However I don't want to write but I'm not writing this article on a gun-point. Lolzzzzzzzz... The objective is to help those users who want to remain stick with legacy programs just because they don't understand new and improved systems. So, that they can move to new systems, explore it, gradually learn it and hence praise it. Second reason is that such utilities are available @ cost of $20-$50 over the internet which my dear readers and excel users do not need to pay anyway.&lt;br /&gt;&lt;br /&gt;&lt;table class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;" align="center" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt; &lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;img src="http://3.bp.blogspot.com/_gV5Uxtigafo/TQ85lNVISoI/AAAAAAAADcw/v7j9YBTtjp4/s640/Excel_2003_Menu_in_Excel_2007.PNG" width="600" border="0" height="85" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Excel 2003 Style Menu in Excel 2007&lt;span class="Apple-style-span"  style="font-size:small;"&gt; &lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;In my total experience with Excel and Excel users, I encountered many peoples (major of them Senior Managers and Managers) who resist Excel 2007 primarily due to its new ribbon structure. They were habitual to 2003 and before menu style and found it hard to locate their favorite commands. Anyway, let's come to technical part now.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Click here to create  &lt;a href="http://www.excelitems.com/2010/12/excel-2003-style-menu-in-excel-20072010.html"&gt;Excel 2003 Style Menu in Excel 2007/2010&lt;/a&gt;&lt;/h3&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-7121621925586692963?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.excelitems.com/2010/12/excel-2003-style-menu-in-excel-20072010.html' title='Excel 2003 Style Menu in Excel 2007/2010'/><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/7121621925586692963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=7121621925586692963&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7121621925586692963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7121621925586692963'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2010/12/excel-2003-style-menu-in-excel-20072010.html' title='Excel 2003 Style Menu in Excel 2007/2010'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_gV5Uxtigafo/TQ85lNVISoI/AAAAAAAADcw/v7j9YBTtjp4/s72-c/Excel_2003_Menu_in_Excel_2007.PNG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-876951318678408879</id><published>2010-12-27T00:01:00.000+05:30</published><updated>2010-12-27T00:01:23.014+05:30</updated><title type='text'>17 ways to Optimize VBA Code for FASTER Macros</title><content type='html'>Here is a summary of the article:&lt;br /&gt;&lt;b&gt;&lt;a href="http://www.excelitems.com/2010/12/optimize-vba-code-for-faster-macros.html"&gt;&lt;b&gt;Do read full article to understand the logic behind them.&lt;/b&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt; 1.  Analyze the Logic                                             &lt;br /&gt; 2.  Turn off ScreenUpdating&lt;br /&gt; 3.  Turn off 'Automatic Calculations'                  &lt;br /&gt; 4.  Disable Events&lt;br /&gt; 5.  Hide Page breaks                                             &lt;br /&gt; 6.  Use 'WITH' statement&lt;br /&gt; 7.  Use vbNullString instead of ""                       &lt;br /&gt; 8.  Release memory of Object variables&lt;br /&gt; 9.  Reduce the number of lines using colon(:)   &lt;br /&gt; 10. Prefer constants&lt;br /&gt; 11. Avoid Unnecessary Copy and Paste           &lt;br /&gt; 12. Clear the Clipboard after Paste&lt;br /&gt; 13. Avoid 'Macro Recorder' style code.             &lt;br /&gt; 14. Use 'For Each' than 'Indexed For'&lt;br /&gt; 15. Use 'Early Binding' rather 'Late Binding'    &lt;br /&gt; 16. Avoid using Variant&lt;br /&gt; 17. Use Worksheet Functions wherever applicable&lt;br /&gt;&lt;br /&gt; &lt;a href="http://www.excelitems.com/2010/12/optimize-vba-code-for-faster-macros.html"&gt;&lt;b&gt;Do read full article to understand the logic behind them.&lt;/b&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-876951318678408879?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.excelitems.com/2010/12/optimize-vba-code-for-faster-macros.html' title='17 ways to Optimize VBA Code for FASTER Macros'/><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/876951318678408879/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=876951318678408879&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/876951318678408879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/876951318678408879'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2010/12/17-ways-to-optimize-vba-code-for-faster.html' title='17 ways to Optimize VBA Code for FASTER Macros'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-2944903063491242178</id><published>2008-08-07T17:31:00.002+05:30</published><updated>2010-04-18T10:23:49.269+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Automate Powerpoint'/><category scheme='http://www.blogger.com/atom/ns#' term='Add Text Box to Slide'/><category scheme='http://www.blogger.com/atom/ns#' term='Add Slides VBA'/><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><category scheme='http://www.blogger.com/atom/ns#' term='Powerpoint VBA'/><category scheme='http://www.blogger.com/atom/ns#' term='Creating Presentation using VBA'/><category scheme='http://www.blogger.com/atom/ns#' term='Create Slides using VBA'/><category scheme='http://www.blogger.com/atom/ns#' term='VBA Saving Powerpoint'/><category scheme='http://www.blogger.com/atom/ns#' term='Automate TextBox'/><title type='text'>VBA - Creating PowerPoint Presentation</title><content type='html'>Most often we will come across a scenario where powerpoint  slides need to be created automatically.&lt;br /&gt;&lt;br /&gt;Here is a sample &amp;amp; simple code to do that. This code is created using VBA (Excel 2000)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sub Create_PowerPoint_Slides()&lt;br /&gt;&lt;br /&gt;On Error GoTo Err_PPT&lt;br /&gt;&lt;br /&gt;Dim oPA As PowerPoint.Application&lt;br /&gt;Dim oPP As PowerPoint.Presentation&lt;br /&gt;Dim oPS As PowerPoint.Slide&lt;br /&gt;Dim oShape As PowerPoint.Shape&lt;br /&gt;Dim sPath As String&lt;br /&gt;Dim sFile As String&lt;br /&gt;Dim i1 As Integer&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sPath = "C:\"&lt;br /&gt;sFile = "MyfileName"&lt;br /&gt;&lt;br /&gt;Set oPA = New PowerPoint.Application&lt;br /&gt;oPA.Visible = msoTrue&lt;br /&gt;&lt;br /&gt;Set oPP = oPA.Presentations.Add(msoTrue)&lt;br /&gt;&lt;br /&gt;For i1 = 1 To 10&lt;br /&gt;oPP.Slides.Add 1, ppLayoutBlank&lt;br /&gt;Next i1&lt;br /&gt;&lt;br /&gt;Set oPS = oPP.Slides(1)&lt;br /&gt;Set oShape = oPS.Shapes.AddTextbox(msoTextOrientationHorizontal, 140#, 246#, 400#, 36#)&lt;br /&gt;oShape.TextFrame.WordWrap = msoTrue&lt;br /&gt;&lt;br /&gt;oShape.TextFrame.TextRange.Text = "Comments For File : " &amp;amp; sFile&lt;br /&gt;With oShape&lt;br /&gt;.Fill.Visible = msoTrue&lt;br /&gt;.Fill.Solid&lt;br /&gt;.Fill.ForeColor.RGB = RGB(204, 255, 255)&lt;br /&gt;.Line.Weight = 3#&lt;br /&gt;.Line.Visible = msoTrue&lt;br /&gt;.Line.ForeColor.SchemeColor = ppForeground&lt;br /&gt;.Line.BackColor.RGB = RGB(255, 255, 255)&lt;br /&gt;End With&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;oPP.SaveAs sPath &amp;amp; sFile &amp;amp; ".ppt"&lt;br /&gt;oPP.Close&lt;br /&gt;oPA.Quit&lt;br /&gt;&lt;br /&gt;If Not oPS Is Nothing Then Set oPS = Nothing&lt;br /&gt;If Not oPP Is Nothing Then Set oPP = Nothing&lt;br /&gt;If Not oPA Is Nothing Then Set oPA = Nothing&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Err_PPT:&lt;br /&gt;If Err &amp;lt;&amp;gt; 0 Then&lt;br /&gt;MsgBox Err.Description&lt;br /&gt;Err.Clear&lt;br /&gt;Resume Next&lt;br /&gt;End If&lt;br /&gt;&lt;br /&gt;End Sub&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-2944903063491242178?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/2944903063491242178/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=2944903063491242178&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2944903063491242178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2944903063491242178'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2008/08/vba-creating-powerpoint-presentation.html' title='VBA - Creating PowerPoint Presentation'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1961940974144279391</id><published>2008-06-22T09:28:00.003+05:30</published><updated>2008-06-22T09:38:14.499+05:30</updated><title type='text'>MCA Percentage Calculator (IP University)</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-size:180%;"&gt;&lt;a href="http://groups.google.co.in/group/powerpoint-slides/web/MCA%20Percentage%20Calculator%20%28IP%20University%29.xls"&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Click here to Calculate your Cumulative Percentage&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;(Only for IP University MCA Students)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 51, 204);"&gt;*Note : &lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;Please download the VBA tool and fill the boxes with your marks to calculate your final cumulative percentage.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1961940974144279391?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1961940974144279391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1961940974144279391&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1961940974144279391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1961940974144279391'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2008/06/mca-percentage-calculator-ip-university.html' title='MCA Percentage Calculator (IP University)'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-8462262366955451857</id><published>2007-09-30T17:30:00.000+05:30</published><updated>2007-09-30T17:37:54.064+05:30</updated><title type='text'>Stock Market Portfolio Tracker in MS Excel</title><content type='html'>&lt;table str="" style="border-collapse: collapse; width: 765px; height: 1px;" border="0" cellpadding="0" cellspacing="0"&gt; &lt;col style="width: 574pt;" width="765"&gt;&lt;col&gt;   &lt;tbody&gt;&lt;tr&gt;&lt;td class="xl24" style="height: 15.75pt; width: 574pt;" height="21" width="765"&gt;This   excel file will download stock prices from yahoo server.&lt;br /&gt;   &lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt; This portfolio tracker download stock prices automatically from Yahoo server. We just need to open the file &amp;amp; update your stock codes &amp;amp; click the download button&lt;br /&gt;&lt;br /&gt;It is very user friendly.Just read the instructions in "ReadMe.&lt;br /&gt;&lt;br /&gt;In “Portfolio” sheet we can track all details like purchase price, current price&lt;br /&gt;Previous Closing price, Change in %, Volume, Day H, Day L, 52 H, 52 L, Date, Time&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold; color: rgb(0, 153, 0);" href="http://groups.google.com/group/excel-macros/web/Portfolio+tracker.zip"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-8462262366955451857?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/8462262366955451857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=8462262366955451857&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8462262366955451857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8462262366955451857'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/09/stock-market-portfolio-tracker-in-ms.html' title='Stock Market Portfolio Tracker in MS Excel'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-4020147541892348233</id><published>2007-07-28T15:23:00.001+05:30</published><updated>2007-07-28T15:23:44.811+05:30</updated><title type='text'>Two tips for giving your Excel worksheets a professional look</title><content type='html'>&lt;p&gt;Excel provides several underline formats to give your spreadsheets a professional look and to make them easier to read at a glance. For example, labels and values are often underlined to distinguish them from the rest of the data. To access these formats, click on the cell you want formatted and press [Ctrl]1. Click on the Font tab and then click on the drop-down arrow of the Underline combo box. This box offers four different types of line formatting. While the Single and Double format are appropriate for text labels, they are not appropriate for indicating totals and subtotals. For Totals, you should choose the Double Accounting format; for Subtotals, choose the Single Accounting format.&lt;/p&gt;  &lt;p&gt;Another way you can make your worksheets look more professional is to remove zero values. For example, you've just copied a formula down a column, and now you have blocks of cells containing 0.00 or 0.00%. You could go back and delete the formulas from those particular cells, but an easier method would be to change the worksheet to avoid displaying or printing the zero values. To do so, follow these steps:&lt;/p&gt;  &lt;ol&gt;&lt;li&gt;Go to Tools | Options.&lt;/li&gt;&lt;li&gt;Click the View tab.&lt;/li&gt;&lt;li&gt;Under the Window Options section, clear the Zero Values check box.&lt;/li&gt;&lt;li&gt;Click OK.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-4020147541892348233?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/4020147541892348233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=4020147541892348233&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4020147541892348233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4020147541892348233'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/07/two-tips-for-giving-your-excel.html' title='Two tips for giving your Excel worksheets a professional look'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-6237102684627584421</id><published>2007-07-28T15:17:00.000+05:30</published><updated>2007-07-28T15:19:27.999+05:30</updated><title type='text'>10 simple tips for working more efficiently in Microsoft Excel</title><content type='html'>&lt;h2 style="color: rgb(51, 51, 255);"&gt;#1: Exploit defined names&lt;/h2&gt;  &lt;p&gt;Defined names aren't just for ranges. You can use a defined name to define a constant value, such as a discount amount. Use the feature as you normally would, entering the literal value or expression that evaluates to the desired value into the named cell. For instance, select a cell and choose Name from the Insert menu. Then, select Define. Enter the descriptive name &lt;i&gt;Discount&lt;/i&gt; and click OK. Now, in the same cell, enter the actual discount amount, say 3 percent (just enter &lt;i&gt;.03&lt;/i&gt;). Now, you can use the defined name, Discount, in your formulas instead of entering the literal value .03. For instance, Excel would use .03 for Discount when evaluating the following formula:&lt;/p&gt;  &lt;p&gt;=TotalPrice - (TotalPrice * Discount)&lt;/p&gt;  &lt;p&gt;This quick tip has two benefits: It makes updating much simpler, as you can quickly change the value in Discount and Excel will automatically update all dependent formulas. And it eliminates data entry errors.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#2: Quick copy to noncontiguous cells&lt;/h2&gt;  &lt;p&gt;Copying data or a formula is simple. You just drag the source cell's fill handle and Excel copies the data or formula from the source cell to the cells you select using the fill handle. But copying isn't always a nice, neat, contiguous package. Sometimes you need to copy data or a formula to a series of noncontiguous cells. You could paste the source data into each individual cell, but that's the hard way. Instead, you can copy data into a noncontiguous block.&lt;/p&gt;  &lt;p&gt;First, copy the source data. Then, hold down the Ctrl key while you click each cell in the noncontiguous destination range. Once you've highlighted each target cell, press Ctrl+V, and Excel will copy the source data into each of the highlighted cells. Formulas copied this way obey referencing rules, in regard to absolute and relative addresses.&lt;/p&gt;  &lt;p&gt;An alternate method is to right-click in the cell that contains data you want to copy and choose Copy from the resulting submenu. Then, right-click a destination cell and choose Paste. At this point, the source cell is still highlighted, which means you can copy the contents again. Right-click another destination cell and choose Paste. Continuing selecting destination cells until you've completed the copy task. Press Esc to clear the selection of the source cell.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#3: Customize defaults&lt;/h2&gt;  &lt;p&gt;Excel uses template files to control default settings in new workbooks and sheets. For most of us, the settings are adequate. However, if you find yourself resetting the same defaults for each new workbook or sheet, consider changing the defaults permanently.&lt;/p&gt;  &lt;p&gt;To change default settings for a workbook, open Book.xlt, make changes, and then save the file. Don't change the file's name; you're just updating it. (It's a good idea to create a copy of the original Book.xlt so you can revert to Excel's original settings if necessary. Name the copy BookOriginalSettings.xlt or something similarly descriptive.) After changing Book.xlt, all new workbooks will use the custom settings you applied. To change a sheet's default settings, open Sheet.xlt, make the necessary changes, and save it.&lt;/p&gt;  &lt;p&gt;If you don't have one or both files, simply create your own. Just be sure to save them in Excel's XLStart folder (\Program Files\Microsoft Office\XLStart).&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#4: Enter repetitive data quickly&lt;/h2&gt;  &lt;p&gt;Tip #2 shows you how to copy existing data into noncontiguous cells. You can also use this technique to &lt;i&gt;enter&lt;/i&gt; data into a series of noncontiguous cells. Hold down the Ctrl key and click all the cells into which you want to enter data. Then, type the text you want to enter and press Ctrl+Enter. Excel will enter the typed text into all of the cells in the noncontiguous selection.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#5: Create custom lists&lt;/h2&gt;  &lt;p&gt;Most of us work with sets of data that seem to repeat themselves throughout our projects. That means we can enter the same values in numerous spots. If you frequently enter the same dataset, consider creating a custom list. To do so, choose Options from the Tools menu and then click the Custom Lists tab. In the List Entries control, enter each item in the list, one entry per line, in the order in which you want it to appear. When you've completed the list, click Add. Excel will copy the list to the Custom Lists control. Click OK to close the Options dialog. To enter the list, select a cell and enter any name in the list. Then use the fill handle to complete the list.&lt;/p&gt;  &lt;p&gt;If you want a partial list, enter the item you want to begin with and then pull down the fill handle. Excel will fill in the remaining names.&lt;/p&gt;  &lt;p&gt;If the list already exists in the sheet, you don't have to retype it to create a custom list. Simply select the list before choosing Options from the Tools menu. Then, click Import on the Custom Lists tab.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#6: Customize movement&lt;/h2&gt;  &lt;p&gt;By default, the cell pointer moves down when you press Enter. Selecting the cell immediately below the current one won't always be what you need. For instance, some people enter data from column to column. You could press the Right Arrow key instead of Enter, but out of habit, most of us reach for Enter. Even if you can retrain yourself (or users) to use the arrow keys, they're far enough away from the main keys to slow down data entry.&lt;/p&gt;  &lt;p&gt;Fortunately, you can change the cell pointer's default direction. Chose Options from the Tools menu and then click the Edit tab. Select the Move Selection After Enter check box (if necessary) and then choose a direction from the option's drop-down list. For instance, to move from column to column, you might choose Right instead of Down.&lt;/p&gt;  &lt;p&gt;While entering data, you can temporarily force the cell pointer to move in the opposite direction by holding down the Shift key while you press Enter.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#7: Hide everything but the working area&lt;/h2&gt;  &lt;p&gt;You usually hide a column or row to conceal or protect data and formulas. You can also hide unused regions of a sheet to keep users from exploiting unused areas or to help keep them on task by not allowing them to wander. By hiding unused rows and columns, you present a sheet that focuses on just the work area.&lt;/p&gt;  &lt;p&gt;To hide unused rows, select the row beneath the sheet's last row. (Select the row header to select the entire row.) Next, press Ctrl+Shift+Down Arrow to select every row between the selected row and the bottom of the sheet. Then, choose Row from the Format menu and select Hide. Repeat this process to hide unused columns, only select the column header in the first empty column. Press Ctrl+Shift+Right Arrow and then choose Column from the Format menu instead of Row.&lt;/p&gt;  &lt;p&gt;Before you hide anything, make sure you don't inadvertently hide an obscure area by pressing Ctrl+End to find the last cell in the sheet's used range. Unhide the rows and columns by selecting the entire sheet. Then, select Row or Column from the Format menu, and choose Unhide.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#8: View formulas, or not, quickly&lt;/h2&gt;  &lt;p&gt;You probably know that you can view all the formulas in a sheet by choosing Options from the Tools menu and selecting Formulas on the View tab. Doing so displays formulas instead of their evaluated results. But there's a quicker way. Press Ctrl+~ (the tilde character to the left of the number 1 on your keyboard). The keyboard combination toggles between formulas and normal view. When you're finished viewing the formulas, simply press Ctrl+~ again to return to normal view.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#9: Identify printed sheets&lt;/h2&gt;  &lt;p&gt;Printing a sheet is a common task. Some users find it useful to print the name of the workbook in the header or footer. In Excel 2003, you can accomplish this by choosing Page Setup from the File menu and clicking the Header/Footer tab. Then, choose the appropriate item from the Header control's drop-down list. Versions prior to 2003 can use the following VBA procedure to print the full file's pathname:&lt;/p&gt;  &lt;pre&gt;Sub FormatHeader()&lt;br /&gt; With ThisWorkbook&lt;br /&gt;   ThisWorkbook.Worksheets(sheetname)PageSetup.LeftHeader = .FullName&lt;br /&gt; End With&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;  &lt;p&gt;where &lt;i&gt;sheetname&lt;/i&gt; is the sheet's name as a string value. To make the procedure more dynamic, use ActiveSheet.Name instead. That way you can run it against any sheet in the workbook.&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 255);"&gt;#10: Speed up calculation time&lt;/h2&gt;  &lt;p&gt;How, when, and what Excel calculates is a huge subject. In general, cell references and calculation operations are the main performance vampires. Reasonable formulas and even lots of data don't usually slow things down. Complex formulas and repetitive references are the real culprits. Here are a few basic guidelines that should help you avoid calculation bottlenecks:&lt;/p&gt;&lt;ul&gt;&lt;li&gt; Avoid complex and array formulas. Use more rows and columns to store intermediate values and use fewer complex calculations.&lt;/li&gt;&lt;li&gt; Reduce the number of references in each formula to the bare minimum. Copied formulas are notorious for repeating references and calculations. Move repeated calculations to a cell and reference that cell in the original formula. (See Tip #1 for an alternate suggestion.)&lt;/li&gt;&lt;li&gt; Always use the most efficient function possible: Sort data before performing lookups; minimize the number of cells in SUM and SUMIF; replace a slow array with a user-defined function, and so on.&lt;/li&gt;&lt;li&gt; Avoid volatile functions if possible. Excel recalculates these functions with each recalculation, even if nothing has changed. Too many volatile functions (RAND(), NOW(), TODAY(), and so on) can slow things down.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-6237102684627584421?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/6237102684627584421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=6237102684627584421&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6237102684627584421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6237102684627584421'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/07/10-simple-tips-for-working-more.html' title='10 simple tips for working more efficiently in Microsoft Excel'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1005628132941151198</id><published>2007-05-06T09:33:00.000+05:30</published><updated>2007-05-06T09:47:50.099+05:30</updated><title type='text'>Various amazing Calculators made in Excel</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;&lt;span style="font-size:130%;"&gt;1.&lt;/span&gt; The Ultimate Financial Calculator &lt;a href="http://excel-macros.googlegroups.com/web/Financial_Calculator.xls"&gt;&lt;span style="color: rgb(255, 0, 0);font-size:78%;" &gt;Download&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Investment Valuation            &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Rates of Return&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Financial Statements            &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Capital Budgeting&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Time Value of Money            &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Loans and Leasing&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;2. EMI Calculator &lt;a href="http://excel-macros.googlegroups.com/web/EMI_Calculator.xls"&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;font-size:78%;" &gt;Download&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Calculate EMI of any kind of Loan&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;3. Budget Planner &lt;a href="http://excel-macros.googlegroups.com/web/Budget_Planner.xls"&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;font-size:78%;" &gt;Download&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Create a quick and easy budget(Daily,Monthly,Yearly)&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;4.Amortisation &lt;a href="http://groups.google.com/group/excel-macros/web/amortisation.xls"&gt;&lt;span style="font-weight: bold;font-size:78%;" &gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Download&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;This calculator will give you a break - up of your Interest and Principal every month.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1005628132941151198?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1005628132941151198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1005628132941151198&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1005628132941151198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1005628132941151198'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/05/various-amazing-calculators-made-in.html' title='Various amazing Calculators made in Excel'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1108471966948987103</id><published>2007-04-21T15:58:00.000+05:30</published><updated>2007-04-21T16:13:07.424+05:30</updated><title type='text'>Selecting only blank cells</title><content type='html'>This is one of the questions colleagues at work are often asking me. The need arises usually when you are importing data from the mainframe to Excel.&lt;br /&gt;Many times you are getting something like this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3857/831/400/BlankCells1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 273px; height: 300px;" src="http://photos1.blogger.com/blogger/3857/831/400/BlankCells1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;If you want to produce a Pivot Table from this data, you will have to fill the blank cells in column A:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;values in cells A3 and A4 must be "Peter"&lt;/li&gt;&lt;li&gt;values in cells A6 and A7 will must be "Paul"&lt;/li&gt;&lt;li&gt;values in cells A9 and A10 must be "Mary"&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This can be done manually in our example. But suppose you have, let's say, 2,000 records in your table. In that case you can take advantage from the "Go To - Special" feature in Excel.&lt;/p&gt;&lt;p&gt;How? &lt;/p&gt;&lt;p&gt;First select the whole relevant range (the column range, in our case A1:A10). Then press "Ctrl + G" or F5. You will get this:&lt;/p&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3857/831/400/BlankCells2.5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 348px; height: 271px;" src="http://photos1.blogger.com/blogger/3857/831/400/BlankCells2.5.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Hit the "Special" button and mark "Blanks"&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3857/831/400/BlankCells3.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://photos1.blogger.com/blogger/3857/831/400/BlankCells3.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;and hit "OK"&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3857/831/400/BlankCells4.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 224px; height: 294px;" src="http://photos1.blogger.com/blogger/3857/831/400/BlankCells4.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Now enter "=" (the equal sign) in cell A3 (the first blank cell in the selected range), , click cell A2 (the cell above the first blank cell), and hit "Ctrl + Enter". You will get this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3857/831/400/BlankCells5.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 229px; height: 312px;" src="http://photos1.blogger.com/blogger/3857/831/400/BlankCells5.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;This technique can be useful in many other cases. For example, if you want to delete a whole line when some cell is blank (like in our example), you can select all the blank cells using F5, then press the right button in the mouse, from the pop-up menu select "Delete --&gt; Entire Row" and press "OK". All the rows with a blank cell in the selected range will be deleted.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1108471966948987103?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1108471966948987103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1108471966948987103&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1108471966948987103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1108471966948987103'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/selecting-only-blank-cells.html' title='Selecting only blank cells'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-7834482423841861484</id><published>2007-04-21T15:46:00.000+05:30</published><updated>2008-12-12T11:55:55.302+05:30</updated><title type='text'>How to find where the two curves cross</title><content type='html'>Sachin, a colleague at work, came to me with this question: How can I find the value of the point where to lines cross in a graph?&lt;br /&gt;Excel don't seem to have a build-in procedure to find such a value. The workaround I suggest is to use the Solver Add In.&lt;br /&gt;&lt;br /&gt;Let's look at this example:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wa671SC3JRE/RinlQir7-KI/AAAAAAAAADQ/a3-UFmdCXW0/s1600-h/p1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_wa671SC3JRE/RinlQir7-KI/AAAAAAAAADQ/a3-UFmdCXW0/s320/p1.jpg" alt="" id="BLOGGER_PHOTO_ID_5055824129051850914" border="0" /&gt;&lt;/a&gt;The formulas to produce the graph are:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;in cells B2 to B10: =3*A2+25&lt;/li&gt;&lt;li&gt;in cells C2 to C10: =A2^2+2*A2+1&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Obviously Y1 crosses Y2 somewhere between X=4 and X=6. In order to find the exact value of X we'll use the Solver &lt;em&gt;(in the menu bar: Tools--&gt;Solver. If you can't see it, then you have to install the Add In)&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;Before opening the Solver copy the formulae in cell B10 and C10 to cells B12 and C12.&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wa671SC3JRE/Rinlgyr7-LI/AAAAAAAAADY/0nahVgJNwAg/s1600-h/p2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_wa671SC3JRE/Rinlgyr7-LI/AAAAAAAAADY/0nahVgJNwAg/s320/p2.jpg" alt="" id="BLOGGER_PHOTO_ID_5055824408224725170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In the "set target cells" window write (or select) B12. &lt;/p&gt;&lt;p&gt;In the "by changing cells"window write or select A12.&lt;/p&gt;&lt;p&gt;In the "subject to constraints" window add two constraints:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;B12 = C12 (the answer to our question)&lt;/li&gt;&lt;li&gt;A12&gt;=0 (in order to get a positive value)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Now, your sheet will look like this:&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wa671SC3JRE/RinmCyr7-MI/AAAAAAAAADg/p3ezOP9JqNo/s1600-h/p3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_wa671SC3JRE/RinmCyr7-MI/AAAAAAAAADg/p3ezOP9JqNo/s320/p3.jpg" alt="" id="BLOGGER_PHOTO_ID_5055824992340277442" border="0" /&gt;&lt;/a&gt;&lt;p&gt;Hit the "Solve" button, and you will get this:&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wa671SC3JRE/RinmeCr7-NI/AAAAAAAAADo/CnRedEESano/s1600-h/p4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_wa671SC3JRE/RinmeCr7-NI/AAAAAAAAADo/CnRedEESano/s320/p4.jpg" alt="" id="BLOGGER_PHOTO_ID_5055825460491712722" border="0" /&gt;&lt;/a&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-7834482423841861484?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/7834482423841861484/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=7834482423841861484&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7834482423841861484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7834482423841861484'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/how-to-find-where-two-curves-cross.html' title='How to find where the two curves cross'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wa671SC3JRE/RinlQir7-KI/AAAAAAAAADQ/a3-UFmdCXW0/s72-c/p1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-7397797176185389331</id><published>2007-04-11T21:58:00.000+05:30</published><updated>2007-04-15T18:53:00.186+05:30</updated><title type='text'>CONVERTER FROM XL TO EXE</title><content type='html'>&lt;p class="MsoNormal" style="margin-left: 4px; margin-top: 0pt; margin-bottom: 5px;" align="justify"&gt;&lt;span lang="en-us"&gt;   &lt;span style="color: rgb(255, 0, 0);font-family:Trebuchet MS;font-size:85%;"  &gt;This utility converts   Excel files from the XL format to an EXE format (convert XLS to EXE, convert    XLA to EXE, convert Excel to EXE). Like XL files, the EXE   files created are not independent of Excel, but they allow you to define   Excel's properties before opening, and improve the portability and   functionality of your workbooks.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;      &lt;span lang="en-us"&gt;   &lt;span style="color: rgb(255, 0, 0);font-family:Trebuchet MS;font-size:85%;"  &gt;The conversion, moreover to maintain the   original format features, inclusive for editing thru the Excel, adds others   functionalities where the autocompression and the control over the Excel   highlight. So, by be specialized in Excel and VBA, can be more advantageous   than ZIP files, ZIP autoextracts and program installation utilities.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.esnips.com/nsdoc/57617938-6c95-41be-9ea5-1e8e9a9a10ae"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Download Converter&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);font-family:Trebuchet MS;font-size:85%;"  &gt;Tested in the     Microsoft Excel for Windows versions 97, 2000,     2002(XP), 2003, and 2007.&lt;/span&gt;&lt;br /&gt;&lt;h4 style="margin-bottom: 5px; margin-left: 4px; font-weight: bold;"&gt;&lt;span style="font-size:180%;"&gt;&lt;span lang="en-us"&gt;   &lt;span style="color: rgb(255, 0, 0);font-family:Trebuchet MS;" &gt;EXE format features:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h4&gt;   &lt;p class="MsoNormal" style="margin-left: 4px; margin-bottom: 5px; margin-top: 0pt;"&gt;&lt;span lang="en-us"&gt;   &lt;span style="color: rgb(255, 0, 0);font-family:Trebuchet MS;font-size:85%;"  &gt;- Can be read and write   (Changes done in an EXE file opening in the Excel to write are saved in the   proper EXE file);&lt;br /&gt;- When saving changes, backups are created. Optionally, you can specify   whether to overwrite or not overwrite previous backups (This makes possible   more restoration levels than using XL format);&lt;br /&gt;- Can be read-only, very read-only, doesn’t permit ‘Save’ and ‘Save as’ too;&lt;br /&gt;- Changes can be saved to a new XL file, leaving the EXE unaltered (Good to   be used like a template);&lt;br /&gt;- Changes can be saved to multiple XL files with an incrementing number   (Good to be used like an invoice template);&lt;br /&gt;- Can be opened in the Excel without macro alert or with a custom alert   (Good to work with known files containing macros using the Excel in medium   or high security level);&lt;br /&gt;- Can show, without text size limit, an alert before opening in the Excel   (Good to installation alerts, copyright, guidance etc.);&lt;br /&gt;- Can require password-to-open so safe that only can be cracked by attempts   (brute force) same knowing the converter source code. Then, if you put a   password and forget it, no-one, neither this utility author, can help you;&lt;br /&gt;- There are four levels of autocompression: none, normal (faster), medium   (slower), and high (slower). Normal is equivalent to a normal zip file. This   makes large files more portable, mainly when they need protection, because   protected files in XL format are of low compression. In a test with a simple   workbook of 5 Mb, the ZIP compressed only 14% and this got 74% because the   cryptography is done after the compression;&lt;br /&gt;- Can be attached one or more text or binary files (Good to be used as   installer file);&lt;br /&gt;- All attached XL files can be opened too at start and controlled as one   whole like a 'workbook' of workbooks;&lt;br /&gt;- Can be opened in an exclusive Excel window (exclusive Excel instance)   refusing, while open, any try to share with other strange workbook;&lt;br /&gt;- Can be forced the closure of running Excel instances at start up. This is   helpful to use the EXE as an installer for a COM add-in;&lt;br /&gt;- When opened in a separate instance, it can start Excel in automation mode,   very automation mode; Excel will run totally clean without XLSTARTs, add-Ins,   and COM add-ins too. This is better than /automation Excel command line   option that doesn’t avoid COM add-ins;&lt;br /&gt;- When opened in a separate instance, it can control the Excel window style   (maximize, minimize, normal, or hidden). These four last features are good   to be used when your workbook is a dictator application;&lt;br /&gt;- You can avoid the original converted EXE file from being renamed;&lt;br /&gt;- All the above features can be configured when you convert;&lt;br /&gt;- The conversion can be done thru the utility interface or by command line;&lt;br /&gt;- The command line can contain all of the options, alert text, and file   names and paths to attach. You can generate long and complex command lines   from the user interface and send them to the clipboard to be pasted   anywhere, such as in an argument of VB or VBA Shell function or in the Windows Run   dialog box;&lt;br /&gt;- You can convert back to XL format using Excel's Save As command if not   read-only;&lt;br /&gt;- When convert, it creates a backup of the original XL format file without   overwriting previous one;&lt;br /&gt;- Files in this format can function as EXE in CD Autorun;&lt;br /&gt;- The conversion only adds about 129Kb which, depending on the file size, can be   regained during autocompression;&lt;br /&gt;- The converter and any converted files are standalone in the presence of   the Office library, no extra library is necessary and neither changes in   your Excel or Windows setting.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-7397797176185389331?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/7397797176185389331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=7397797176185389331&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7397797176185389331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/7397797176185389331'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/converter-from-xl-to-exe.html' title='CONVERTER FROM XL TO EXE'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-6513422113723887397</id><published>2007-04-01T18:24:00.000+05:30</published><updated>2007-04-01T18:26:21.878+05:30</updated><title type='text'>Learn Lookups through videos</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/0395d0c8-3029-491a-8895-82a0562b29ba"&gt;&lt;img alt="v look up man" title="click to Viewv look up man" src="http://www.esnips.com//images/thumbs/thumb.zip.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/0395d0c8-3029-491a-8895-82a0562b29ba"&gt;Learn VLookup &lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-6513422113723887397?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/6513422113723887397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=6513422113723887397&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6513422113723887397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6513422113723887397'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/learn-lookups-through-videos.html' title='Learn Lookups through videos'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-2309378626707954842</id><published>2007-04-01T18:19:00.000+05:30</published><updated>2007-04-01T18:23:15.974+05:30</updated><title type='text'>Watch all excel tricks on Videos.</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/2c5b53de-f4ed-4127-bf59-bee5a6c85e4b"&gt;&lt;img alt="little_more_excel" title="click to Viewlittle_more_excel" src="http://www.esnips.com//images/thumbs/thumb.zip.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/2c5b53de-f4ed-4127-bf59-bee5a6c85e4b"&gt;little_more_excel_in_videos&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-2309378626707954842?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/2309378626707954842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=2309378626707954842&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2309378626707954842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2309378626707954842'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/watch-all-excel-tricks-on-videos.html' title='Watch all excel tricks on Videos.'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-2612850307367178978</id><published>2007-04-01T18:06:00.000+05:30</published><updated>2007-04-01T18:09:04.162+05:30</updated><title type='text'>Sybex - Mastering Excel 2003 Programming with VBA</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/d65d5655-abff-4d78-9803-8cd01c14b9b5"&gt;&lt;img alt="Sybex - Mastering Excel 2003 Programming with VBA" title="click to ViewSybex - Mastering Excel 2003 Programming with VBA" src="http://www.esnips.com//images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/d65d5655-abff-4d78-9803-8cd01c14b9b5"&gt;Sybex - Mastering Excel 2003 Programming with VBA&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;Excel VBA Programming Book for beginner and intermediate&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-2612850307367178978?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/2612850307367178978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=2612850307367178978&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2612850307367178978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2612850307367178978'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/04/sybex-mastering-excel-2003-programming.html' title='Sybex - Mastering Excel 2003 Programming with VBA'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1143714710783060099</id><published>2007-03-28T22:44:00.001+05:30</published><updated>2007-03-28T22:44:30.049+05:30</updated><title type='text'>Fractions of Seconds</title><content type='html'>&lt;h2 class="entry-title"&gt;&lt;a href="http://www.dailydoseofexcel.com/archives/2007/03/04/fractions-of-seconds/" target="_blank"&gt;&lt;span&gt;Fractions of Seconds&lt;/span&gt;&lt;img class="entry-title-go-to" src="http://www.google.com/reader/ui/1416249330-go-to.gif" height="18" width="18"&gt; &lt;/a&gt;&lt;/h2&gt;&lt;div class="entry-author"&gt;&lt;span class="entry-source-title-parent"&gt;from &lt;a href="http://www.google.com/reader/view/feed/http%3A%2F%2Fwww.dailydoseofexcel.com%2Ffeed%2F" target="_blank" class="entry-source-title"&gt;Daily Dose of Excel &lt;/a&gt;&lt;/span&gt;&lt;span class="entry-author-name"&gt;&amp;nbsp;by Dick Kusleika&lt;/span&gt;&lt;/div&gt;&lt;div class="entry-body"&gt;&lt;div id=""&gt; &lt;ins class="item-body"&gt;&lt;div&gt;&lt;p&gt;Over on &lt;a target="_blank" href="http://www.dailydoseofexcel.com/archives/2006/02/10/recording-swimming-splits/#comment-22645"&gt;Swimming Splits&lt;/a&gt;, Olly asks:&lt;/p&gt; 	&lt;blockquote&gt;&lt;p&gt;I am a rowing coach and am putting the data that my crew gives me from their training sessions into a spreadsheet in the mm:ss.00 format. However, if I make a mistake inputing the data e.g type 1:23.03 when it should be 1:23.30 something weird happens.&lt;/p&gt; 	&lt;p&gt;When I click in the cell, the value rounds up or down depending so 1:23.30 will round to 1:23.00. This will have a massive impact on the results that I am looking at. Is this a common occurrence in excel or is there something that I am doing wrong or should be pressing?&lt;/p&gt;&lt;/blockquote&gt; 	&lt;p&gt;Good question.  I&amp;#39;m not sure that I know this answer definitively, but I&amp;#39;ll tell you what I think based on what I see.&lt;/p&gt; 	&lt;p&gt;Dates and times are strange beasts in Excel. I should say that they are a strange beast because they are the same thing. As you probably already know, dates are stored as the number of days from a particular date, usually 31-Dec-1899. That means that 01-Jan-1900 is stored as 1 and 04-March-2007 is stored as 39,145. Similarly, times are stored as fractions of a day. While dates are integers, times of day are the fractions between the integers. Today may be 39,145, but today at 8:00AM is 39145.3333333. It&amp;#39;s only 8:00AM and already a third of the day is gone.&lt;/p&gt; 	&lt;p&gt;This method is great for adding, subtracting, and generally doing other math operations on dates. What it&amp;#39;s not good for is understandability by most humans. Excel attempts to bridge that gap by displaying dates and times as dates and times rather than these cryptic numbers. Note that when you enter &lt;code&gt;0:01.03&lt;/code&gt; in a cell, the formula bar displays &lt;code&gt;12:00:01 AM&lt;/code&gt;. Usually the formula bar will tell you the truth regardless of how you&amp;#39;ve formatted the cells, but not in the case of dates and times. Like an over-protective mother, it shields you from the harsh realities. The noteworthy aspect of this example is that there are no hundredths in the formula bar. The hundredths are still stored, but they aren&amp;#39;t displayed in the formula bar.&lt;/p&gt; 	&lt;p&gt;If you were to edit the cell, say, by pressing F2 and Enter you lose the hundredths.  Pressing Enter is the same as entering &lt;code&gt;12:00:01 AM&lt;/code&gt; into the cell, which contains no hundredths. To change the cell from 3 hundredths to 3 tenths, follow these steps: F2 to edit the cell, backspace three times to remove the AM and the preceding space, type .3, press Enter. I don&amp;#39;t know of any way to get the hundredths to display in the formula bar.&lt;/p&gt; 	&lt;p&gt;It seems rather easy for Microsoft to have done this differently. If a user enters fractions of seconds, display fractions of seconds. Otherwise display it as it is now. There doesn&amp;#39;t seem to be a trade-off here that I can see (other than coding time by developers). &lt;/p&gt;&lt;/div&gt;&lt;/ins&gt; &lt;/div&gt;&lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1143714710783060099?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1143714710783060099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1143714710783060099&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1143714710783060099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1143714710783060099'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/fractions-of-seconds.html' title='Fractions of Seconds'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-8795688745423267375</id><published>2007-03-27T20:37:00.000+05:30</published><updated>2007-03-27T20:40:07.291+05:30</updated><title type='text'>Calendar for 178 Years</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/d1c45d26-ebb0-44c1-a8f5-5054f7953700"&gt;&lt;img alt="Calendar_for_178_years" title="click to ViewCalendar_for_178_years" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/d1c45d26-ebb0-44c1-a8f5-5054f7953700"&gt;Calendar_for_178_years&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;Click above to download&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-8795688745423267375?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/8795688745423267375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=8795688745423267375&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8795688745423267375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/8795688745423267375'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/calendar-for-178-years.html' title='Calendar for 178 Years'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-3939541024156137326</id><published>2007-03-20T22:05:00.000+05:30</published><updated>2007-03-20T22:11:43.796+05:30</updated><title type='text'>World cup Cricket Tracker in Excel</title><content type='html'>&lt;span style="color: rgb(255, 102, 0);"&gt;Track the world cup from this Excel Sheet.&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;It is Unique and Rarely available.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/214356ef-d137-4b40-ace8-ee9fd8b825ea"&gt;&lt;img alt="Schedular_cum_Result_Tracker" title="click to ViewSchedular_cum_Result_Tracker" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/214356ef-d137-4b40-ace8-ee9fd8b825ea"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Schedular&lt;/span&gt;_&lt;span style="color: rgb(255, 204, 0);"&gt;cum_&lt;/span&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;Result tracker&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-3939541024156137326?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/3939541024156137326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=3939541024156137326&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/3939541024156137326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/3939541024156137326'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/world-cup-cricket-tracker-in-excel.html' title='World cup Cricket Tracker in Excel'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-789273720932853569</id><published>2007-03-18T14:22:00.000+05:30</published><updated>2007-03-18T14:28:06.212+05:30</updated><title type='text'>Magic Spread Sheet</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/42010269-0ab9-4170-9475-2a8caba42e44"&gt;&lt;img alt="magicspreadsheet" title="click to Viewmagicspreadsheet" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/42010269-0ab9-4170-9475-2a8caba42e44"&gt;Magic  SpreadSheet&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;This Magic Spread Sheet contains following &lt;span style="color: rgb(153, 0, 0);"&gt;M&lt;/span&gt;&lt;span style="color: rgb(153, 51, 153);"&gt;A&lt;/span&gt;&lt;span style="color: rgb(102, 102, 0);"&gt;G&lt;/span&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;I&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;C&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;S:&lt;br /&gt;1)Disappearing the Card&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;2)Secret Number&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;3)Magic Eight Ball&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;I&lt;/span&gt;t&lt;/span&gt;s  &lt;span style="color: rgb(51, 0, 0);"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;A&lt;/span&gt;m&lt;/span&gt;&lt;span style="color: rgb(0, 51, 0);"&gt;azi&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;n&lt;/span&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;g&lt;/span&gt;.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-789273720932853569?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/789273720932853569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=789273720932853569&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/789273720932853569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/789273720932853569'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/magic-spread-sheet.html' title='Magic Spread Sheet'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-2989158728225736463</id><published>2007-03-18T14:17:00.000+05:30</published><updated>2007-03-18T14:21:36.250+05:30</updated><title type='text'>To convert numbers into words(Rs.)</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/b62d68d6-60fa-4911-a4dc-33f5d0fb566f"&gt;&lt;img alt="Numbers+in+Words(Rs)" title="click to ViewNumbers+in+Words(Rs)" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/b62d68d6-60fa-4911-a4dc-33f5d0fb566f"&gt;Numbers+in+Words&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:100%;"  &gt;&lt;span style="color: rgb(0, 0, 153); font-weight: bold;"&gt;This worksheet helps to convert numbers into words.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-2989158728225736463?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/2989158728225736463/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=2989158728225736463&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2989158728225736463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2989158728225736463'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/to-convert-numbers-into-wordsrs.html' title='To convert numbers into words(Rs.)'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-2171859975020044508</id><published>2007-03-18T12:58:00.000+05:30</published><updated>2007-03-18T13:49:52.640+05:30</updated><title type='text'>MS Excel Keyboard Shortcuts</title><content type='html'>&lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;u  style="color: rgb(0, 0, 153);font-family:verdana;"&gt;&lt;span style="" lang="EN-GB"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Navigating in Excel Shortcut&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/u&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Switch between Worksheets &lt;span style=""&gt;                                      &lt;/span&gt;&lt;b&gt;CTRL-PageUp/CTRL-PageDown&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Switch between Workbooks &lt;span style=""&gt;                                       &lt;/span&gt;&lt;b&gt;CTRL-Tab&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Move one character up, down, left, or right. &lt;span style=""&gt;              &lt;/span&gt;&lt;b&gt;Arrow keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Go to end of a contiguous range &lt;span style=""&gt;                                &lt;/span&gt;&lt;b&gt;CTRL-Arrow Keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Select a cell range &lt;span style=""&gt;                              &lt;/span&gt;&lt;span style=""&gt;                        &lt;/span&gt;&lt;b&gt;SHIFT+Arrow keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Highlight a contiguous range &lt;span style=""&gt;                                    &lt;/span&gt;&lt;b&gt;SHIFT-CTRL-Arrow Keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Select entire worksheet &lt;span style=""&gt;                                             &lt;/span&gt;&lt;b&gt;CTRL+A&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Move to the beginning of the line. &lt;span style=""&gt;                              &lt;/span&gt;&lt;b&gt;HOME&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Go To &lt;span style=""&gt;                                                                          &lt;/span&gt;&lt;b&gt;F5&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Move a Sheet/Copy a Sheet &lt;span style=""&gt;                                      &lt;/span&gt;&lt;b&gt;Alt-E-M&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Change Zoom Sizing &lt;span style=""&gt;                                                  &lt;/span&gt;&lt;b&gt;Alt-V-Z&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;        &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style="color: rgb(255, 0, 0);font-size:100%;" &gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;u style="color: rgb(0, 0, 153);"&gt;&lt;span style="" lang="EN-GB"&gt;&lt;span style="color: rgb(255, 0, 0);font-size:100%;" &gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Entering and editing data Shortcut&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/u&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Complete a cell entry and select…&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...the cell below. &lt;span style=""&gt;                                                          &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;ENTER&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...the previous cell above. &lt;span style=""&gt;                                            &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;SHIFT+ENTER&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...the next cell to the right. &lt;span style=""&gt;                                           &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;TAB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...the previous cell to the left.&lt;span style=""&gt;                                        &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;SHIFT+TAB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Delete cell and then get inside the cell &lt;span style=""&gt;                      &lt;/span&gt;&lt;b&gt;BACKSPACE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Delete cell/selection. &lt;span style=""&gt;                                                 &lt;/span&gt;&lt;b&gt;DELETE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Edit inside a cell (edit cell mode) &lt;span style=""&gt;                               &lt;/span&gt;&lt;b&gt;F2&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Once inside edit cell mode (F2)…&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Start a new line in the same cell. &lt;span style=""&gt;                              &lt;/span&gt;&lt;b&gt;ALT+ENTER&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Highlight individual characters within cells &lt;span style=""&gt;   &lt;/span&gt;&lt;b&gt;SHIFT+Arrow keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Highlight contiguous string within cells &lt;span style=""&gt;                      &lt;/span&gt;&lt;b&gt;SHIFT+CTRL+Arrow keys&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Delete the preceding character. &lt;span style=""&gt;                                 &lt;/span&gt;&lt;b&gt;BACKSPACE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Delete the character to the right of the insertion point. &lt;b&gt;DELETE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;i&gt;&lt;span style="" lang="EN-GB"&gt;...Cancel a cell entry. &lt;span style=""&gt;                                                  &lt;/span&gt;&lt;b&gt;ESC&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Spell Check. &lt;span style=""&gt;                                                               &lt;/span&gt;&lt;b&gt;F7&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Insert a comment. &lt;span style=""&gt;                                                      &lt;/span&gt;&lt;b&gt;SHIFT+F2&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Fill down. &lt;span style=""&gt;                                                                    &lt;/span&gt;&lt;b&gt;CTRL+D&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Fill to the right. &lt;span style=""&gt;                                                          &lt;/span&gt;&lt;b&gt;CTRL+R&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Undo the last action. &lt;span style=""&gt;                                                 &lt;/span&gt;&lt;b&gt;CTRL+Z&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Redo the last action. &lt;span style=""&gt;                                                  &lt;/span&gt;&lt;b&gt;F4 or CTRL+Y&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style=""&gt;&lt;span style="color: rgb(0, 0, 153);font-family:verdana;font-size:100%;"  &gt;&lt;u style="font-weight: bold;"&gt;&lt;span style="" lang="EN-GB"&gt;Hiding / Unhiding Rows and Columns Shortcut&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Hide the selected rows. &lt;span style=""&gt;                                              &lt;/span&gt;&lt;b&gt;CTRL+9&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Unhide any hidden rows within the selection. &lt;span style=""&gt;          &lt;/span&gt;&lt;b&gt;CTRL+SHIFT+( (opening parenthesis)&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Hide the selected columns. &lt;span style=""&gt;                                        &lt;/span&gt;&lt;b&gt;CTRL+0 (zero)&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Unhide any hidden columns within the selection. &lt;span style=""&gt;    &lt;/span&gt;&lt;b&gt;CTRL+SHIFT+) (closing parenthesis)&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style=""&gt;&lt;b&gt;&lt;u style="color: rgb(0, 0, 153);"&gt;&lt;span style="" lang="EN-GB"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Selecting, grouping, inserting, and deleting cells Shortcut&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/u&gt;&lt;span style="" lang="EN-GB"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Highlight Entire Row &lt;span style=""&gt;                                                  &lt;/span&gt;&lt;b&gt;SHIFT+SPACEBAR&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Highlight Entire Column &lt;span style=""&gt;                                            &lt;/span&gt;&lt;b&gt;CTRL+SPACEBAR&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Group Rows or Columns &lt;span style=""&gt;                                            &lt;/span&gt;&lt;b&gt;SHIFT+ALT+RIGHT ARROW KEY&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Ungroup Rows or Columns &lt;span style=""&gt;                                        &lt;/span&gt;&lt;b&gt;SHIFT+ALT+LEFT ARROW KEY&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Clear the contents of the selected cells. &lt;span style=""&gt;                    &lt;/span&gt;&lt;b&gt;DELETE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Delete the selected cells. &lt;span style=""&gt;                                            &lt;/span&gt;&lt;b&gt;CTRL+MINUS SIGN&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="" lang="EN-GB"&gt;Insert blank cells. &lt;span style=""&gt;                                                      &lt;/span&gt;&lt;b&gt;CTRL+SHIFT+PLUS SIGN&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-2171859975020044508?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/2171859975020044508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=2171859975020044508&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2171859975020044508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/2171859975020044508'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/ms-excel-keyboard-shortcuts.html' title='MS Excel Keyboard Shortcuts'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-3359294581541938460</id><published>2007-03-13T22:26:00.000+05:30</published><updated>2007-03-18T14:03:56.115+05:30</updated><title type='text'>Pivot Table Introduction</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/5e35b5e0-a50d-42cf-9764-7c5405137ccb"&gt;&lt;img alt="XLPivotTableIntro06-07" title="click to ViewXLPivotTableIntro06-07" src="http://www.esnips.com//images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/5e35b5e0-a50d-42cf-9764-7c5405137ccb"&gt;Pivot Table Introduction&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Pivot tables are used to summarize huge data in Excel.&lt;br /&gt;You can rotate rows &amp; column to view different reports.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Download above file to learn Pivot Tables.&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-3359294581541938460?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/3359294581541938460/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=3359294581541938460&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/3359294581541938460'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/3359294581541938460'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/pivot-table-introduction.html' title='Pivot Table Introduction'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1608750342316546662</id><published>2007-03-13T22:19:00.000+05:30</published><updated>2007-03-18T14:04:24.303+05:30</updated><title type='text'>Notes for Advance Filter in Excel</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/5c1ae915-bf1f-404f-bafa-2d82203644b5"&gt;&lt;img alt="AdvancedFilterNotes" title="click to ViewAdvancedFilterNotes" src="http://www.esnips.com//images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/5c1ae915-bf1f-404f-bafa-2d82203644b5"&gt;Advanced Filter Notes&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 153);"&gt;Complete info on how to use Advance Filter in MS Excel&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1608750342316546662?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1608750342316546662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1608750342316546662&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1608750342316546662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1608750342316546662'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/notes-for-advance-filter-in-excel.html' title='Notes for Advance Filter in Excel'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-4056722622024685080</id><published>2007-03-13T22:16:00.000+05:30</published><updated>2007-03-13T22:18:57.147+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>Excel Keyboard Shortcuts</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/556b1db2-e160-48b5-818f-78cb6f404a4d"&gt;&lt;img alt="Excel Keyboard Shortcuts" title="click to ViewExcel Keyboard Shortcuts" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/556b1db2-e160-48b5-818f-78cb6f404a4d"&gt;Excel Keyboard Shortcuts&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;Excel keyboard Shortcuts to help you work quickly.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-4056722622024685080?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/4056722622024685080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=4056722622024685080&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4056722622024685080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4056722622024685080'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/excel-keyboard-shortcuts.html' title='Excel Keyboard Shortcuts'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-275415692979722942</id><published>2007-03-10T13:46:00.000+05:30</published><updated>2007-03-10T13:47:15.281+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>Excel Advanced Report Development</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" style="background-color:#5D7CBA; border-color: #353535; color:#0; font-family:Arial, Helvetica, sans-serif; font-size:11px; padding:0px; border-width:1px; border-style:solid"&gt;&lt;tr style="background-color:#FFFFFF;"&gt;&lt;td align="center" style="padding:5px"&gt;&lt;a href="http://www.esnips.com/nsdoc/daf4c50b-0a3d-4b74-901f-ca8c70b32cb5"&gt;&lt;img border="0" alt="Excel Advanced Report Development" title="click to ViewExcel Advanced Report Development" src="http://www.esnips.com//images/thumbs/thumb.pdf.gif"&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color:#FFFFFF;"&gt;&lt;td style="padding:5px" align="center"&gt;&lt;strong&gt;&lt;a style="color:#333333" href="http://www.esnips.com/nsdoc/daf4c50b-0a3d-4b74-901f-ca8c70b32cb5"&gt;Excel Advanced Report Development&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-275415692979722942?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/275415692979722942/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=275415692979722942&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/275415692979722942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/275415692979722942'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/excel-advanced-report-development.html' title='Excel Advanced Report Development'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-4125213431862254019</id><published>2007-03-10T13:28:00.000+05:30</published><updated>2007-03-10T13:33:08.661+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>Download Budget Planner</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/b6949418-7c39-418a-b24c-390d40787692"&gt;&lt;img alt="Budget_Planner" title="click to View Budget_Planner" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/b6949418-7c39-418a-b24c-390d40787692"&gt;Budget_Planner&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-4125213431862254019?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/4125213431862254019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=4125213431862254019&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4125213431862254019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4125213431862254019'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/download-budget-planner.html' title='Download Budget Planner'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1896906106044403212</id><published>2007-03-02T22:32:00.000+05:30</published><updated>2007-03-02T22:35:06.054+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>Can you solve this puzzle??</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/fd37d5ee-e731-47d8-8454-32ee127b51e8"&gt;&lt;img alt="puzzle" title="click to Viewpuzzle" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;Puzzle&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;Click above to download the puzzle.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:130%;" &gt;&lt;br /&gt;Its a challenge&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1896906106044403212?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1896906106044403212/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1896906106044403212&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1896906106044403212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1896906106044403212'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/can-you-solve-this-puzzle.html' title='Can you solve this puzzle??'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-1165834298955204933</id><published>2007-03-01T21:41:00.000+05:30</published><updated>2007-03-03T18:56:54.309+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>VBA Macros ebook</title><content type='html'>&lt;span style="color: rgb(0, 0, 153);font-size:130%;" &gt;It is interactive ebook which will help you in learning &amp; developing Macros.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;Click below to download VBA Macros ebook&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/nsdoc/2d9ccb26-f53f-4112-bfd2-871bf649980c"&gt;&lt;img alt="VBA Macro ebook" title="click to ViewVBA Macro ebook" src="http://www.esnips.com//images/thumbs/any.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/nsdoc/2d9ccb26-f53f-4112-bfd2-871bf649980c"&gt;VBA Macro ebook&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-1165834298955204933?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/1165834298955204933/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=1165834298955204933&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1165834298955204933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/1165834298955204933'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/03/vba-macros-ebook.html' title='VBA Macros ebook'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-5310828336137787885</id><published>2007-02-18T17:20:00.000+05:30</published><updated>2007-03-03T18:57:29.287+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>EMI Calculator</title><content type='html'>&lt;span style="color: rgb(255, 0, 0); font-weight: bold;font-family:verdana;" &gt;Click the link below to download EMI Calculator&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/4c77ba88-9ae7-47c9-8d02-da4d3e95e443/EMI_Calculator/?widget=documentIcon"&gt;&lt;img alt="EMI_Calculator" title="click to ViewEMI_Calculator" src="http://www.esnips.com//images/thumbs/thumb.xls.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/4c77ba88-9ae7-47c9-8d02-da4d3e95e443/EMI_Calculator/?widget=documentIcon"&gt;EMI_Calculator&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-5310828336137787885?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/5310828336137787885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=5310828336137787885&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/5310828336137787885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/5310828336137787885'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/02/emi-calculator.html' title='EMI Calculator'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-6355635481203597235</id><published>2007-02-16T16:29:00.000+05:30</published><updated>2007-02-16T16:48:22.849+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>For Sudoku Lovers</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Following files uploaded for sudoku lovers&lt;/span&gt;&lt;/br&gt;&lt;br /&gt;1.Sudoku solver &amp; sudoku Generator &lt;/br&gt;&lt;br /&gt;2.Giant sudoku&lt;/br&gt;&lt;br /&gt;3.Multiple solution sudoku&lt;/br&gt;&lt;br /&gt;Click this link to download all above files :)&lt;/br&gt;&lt;br /&gt;&lt;table border="0" cellpadding="0" cellspacing="0" style="background-color:#5D7CBA; border-color: #353535; color:#0; font-family:Arial, Helvetica, sans-serif; font-size:11px; padding:0px; border-width:1px; border-style:solid"&gt;&lt;tr style="background-color:#FFFFFF;"&gt;&lt;td align="center" style="padding:5px"&gt;&lt;a href="http://www.esnips.com/doc/2f3f2005-4ae3-41f5-bcec-9829dbfae7c9/Sudoku_all/?widget=documentIcon"&gt;&lt;img border="0" alt="Sudoku_all" title="click to ViewSudoku_all" src="http://www.esnips.com//images/thumbs/thumb.zip.gif"&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color:#FFFFFF;"&gt;&lt;td style="padding:5px" align="center"&gt;&lt;strong&gt;&lt;a style="color:#333333" href="http://www.esnips.com/doc/2f3f2005-4ae3-41f5-bcec-9829dbfae7c9/Sudoku_all/?widget=documentIcon"&gt;Sudoku_all.zip&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding:5px; font-size:9px; color:#FFFFFF" valign="bottom"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-6355635481203597235?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/6355635481203597235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=6355635481203597235&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6355635481203597235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/6355635481203597235'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/02/for-sudoku-lovers.html' title='For Sudoku Lovers'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2137726452698956582.post-4611402050251417329</id><published>2007-02-10T11:03:00.000+05:30</published><updated>2007-03-10T13:49:01.654+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Download'/><title type='text'>Excel in MS EXCEL &amp; VBA Macros</title><content type='html'>&lt;span style="color: rgb(51, 102, 255);"&gt;==============================&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153); font-weight: bold;"&gt; Excel in MS EXCEL &amp; VBA Macros&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt; ==============================&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(23, 44, B8);"&gt;&lt;br&gt;Click this button BELOW to Download Useful Excel Material&lt;/br&gt;&lt;/span&gt;&lt;br /&gt;&lt;table border="0" cellpadding="0" cellspacing="0" style="  background-color: #214552   ;border-color: #cccccc; color:#000 ; font-family:Arial, Helvetica, sans-serif; font-size:11px; padding:0px; border-width:1px; border-style:solid"&gt;&lt;tr&gt;&lt;td align="center"&gt;&lt;embed quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100" height="100" src="http://static.esnips.com/images/widgets/flash/turning.swf" flashvars="theUrl=http://www.esnips.com//web/OrkutExcelCommunity/?widget=flash_turning"&gt;&lt;/embed&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 4px; font-size:11px;" valign="bottom" align="center"&gt;&lt;a href="http://www.esnips.com//web/OrkutExcelCommunity/?widget=flash_turning"&gt;Orkut Excel Community&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2137726452698956582-4611402050251417329?l=excelvbamacros.discussexcel.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excelvbamacros.discussexcel.com/feeds/4611402050251417329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2137726452698956582&amp;postID=4611402050251417329&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4611402050251417329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2137726452698956582/posts/default/4611402050251417329'/><link rel='alternate' type='text/html' href='http://excelvbamacros.discussexcel.com/2007/02/excel-in-msexcel-vba-macros.html' title='Excel in MS EXCEL &amp; VBA Macros'/><author><name>Ayush Jain</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
