<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Chandoo.org - Learn Excel &#38; Charting Online - Forums Forum: Ask an Excel Question - Recent Posts</title>
		<link>http://chandoo.org/forums/forum/ask-excel-questions</link>
		<description>Ask Excel and Charting Questions, Muse about Visualizations, Learn and Share - Discussion Forums - Chandoo.org</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 18:42:34 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://chandoo.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://chandoo.org/forums/rss/forum/ask-excel-questions" rel="self" type="application/rss+xml" />

		<item>
			<title>brightyoyo on "Delete Rows"</title>
			<link>http://chandoo.org/forums/topic/delete-rows#post-104629</link>
			<pubDate>Fri, 24 May 2013 18:14:33 +0000</pubDate>
			<dc:creator>brightyoyo</dc:creator>
			<guid isPermaLink="false">104629@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi SirJB7&#60;br /&#62;
I was able to get the macro working, but not able to get it to delete the row based on the first letter in the cell.  Any help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thank You
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Using VLOOKUP on a value that changes each month"</title>
			<link>http://chandoo.org/forums/topic/using-vlookup-on-a-value-that-changes-each-month#post-104628</link>
			<pubDate>Fri, 24 May 2013 17:59:08 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">104628@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, greykitten!&#60;br /&#62;
If I didn't get it wrongly why don't you use this formula, as you already have the list of names in column G?&#60;br /&#62;
=VLOOKUP(G5,$B$5:$G$17,2,FALSE)&#60;br /&#62;
And copy it down as needed.&#60;br /&#62;
Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Negative value to make"</title>
			<link>http://chandoo.org/forums/topic/negative-value-to-make#post-104627</link>
			<pubDate>Fri, 24 May 2013 17:53:26 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">104627@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, jack999!&#60;br /&#62;
Apply this custom format:&#60;br /&#62;
#0.00&#34; debit&#34;;#0.00&#34; credit&#34;&#60;br /&#62;
Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jack999 on "Negative value to make"</title>
			<link>http://chandoo.org/forums/topic/negative-value-to-make#post-104626</link>
			<pubDate>Fri, 24 May 2013 17:41:29 +0000</pubDate>
			<dc:creator>jack999</dc:creator>
			<guid isPermaLink="false">104626@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I am using this (=J4+D56-K4-D57) formula and getting negative value, but I want this negative value to make credit &#60;/p&#62;
&#60;p&#62;suppose if the answer is -59700.00 I want the value as 59700.00 credit&#60;br /&#62;
if the result is 59700.00 then  59700.00 debit&#60;br /&#62;
can any one give a solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Populate cell with value from dynamically generated table on a VBA userform"</title>
			<link>http://chandoo.org/forums/topic/populate-cell-with-value-from-dynamically-generated-table-on-a-vba-userform#post-104625</link>
			<pubDate>Fri, 24 May 2013 17:39:03 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">104625@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;Sure. Do the following :&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Private Sub ListBox1_Click()
            Unload Me
End Sub&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Put the above code in the Userform section.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
            UserForm1.ListBox1.ControlSource = Target.Address(0, 0, xlA1)
            UserForm1.Show
End Sub&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Put the above code in the Sheet section.&#60;/p&#62;
&#60;p&#62;Now , when ever you click on a cell , the Userform will pop up ; when you select any row in the form , the BoundColumn property will decide which column value is to be used ; since the ListBox ControlSource is being set to the Activecell , the value will put in that.&#60;/p&#62;
&#60;p&#62;The ListBox1_Click procedure ensures that when you click , the Userform will disappear.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;The only problem with this is that you cannot click on a cell which is already filled with data ; you can only click on an empty cell !&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>greykitten on "Using VLOOKUP on a value that changes each month"</title>
			<link>http://chandoo.org/forums/topic/using-vlookup-on-a-value-that-changes-each-month#post-104624</link>
			<pubDate>Fri, 24 May 2013 17:37:41 +0000</pubDate>
			<dc:creator>greykitten</dc:creator>
			<guid isPermaLink="false">104624@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Is VLOOKUP capable of returning a number on the contents of a particular cell instead of a particular name?  I looked through various articles on Chandoo but couldn't find an answer.  My VLOOKUP formula works great when I use it like this:&#60;/p&#62;
&#60;p&#62;=VLOOKUP(&#34;Juno&#34;,$B$5:$G$17,2,FALSE) to return the number of customers for Juno.  In the file below, that works fine as long as cell G5 keeps Juno as the contents permanently.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://hotfile.com/dl/224302895/9661015/VLOOKUP_Example.xls.html&#34;&#62;https://hotfile.com/dl/224302895/9661015/VLOOKUP_Example.xls.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But in my work, the name in cell G5 will change each month so including the name won't work.  I need the VLOOKUP to retrieve the number of customers on the adjacent cell even when the name in cell G5 changes.  Can you use a cell reference in VLOOKUP so that the formula returns the value of whatever name happens to be in that cell that month?  Is VLOOKUP even the right formula to address that need?  Your help is greatly appreciated.  Thank you.  &#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
greykitten
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dronka on "Populate cell with value from dynamically generated table on a VBA userform"</title>
			<link>http://chandoo.org/forums/topic/populate-cell-with-value-from-dynamically-generated-table-on-a-vba-userform#post-104623</link>
			<pubDate>Fri, 24 May 2013 17:10:23 +0000</pubDate>
			<dc:creator>dronka</dc:creator>
			<guid isPermaLink="false">104623@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Wow, that is too cool! So, all of that works great. Now I'm wondering if the control source can be whichever cell was selected before I pulled up the userform.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "vlookup multiple worksheet question [SOLVED]"</title>
			<link>http://chandoo.org/forums/topic/vlookup-multiple-worksheet-question#post-104621</link>
			<pubDate>Fri, 24 May 2013 16:55:00 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">104621@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Prajith ,&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;sheetlist&#60;/strong&#62; is a named range i.e. it is a range which has been given a name. In this case , it refers to the range Sheet1!$H$3:$H$6.&#60;/p&#62;
&#60;p&#62;What this range contains is the names of the sheets which have the data tables in them viz. Sheet2 , Sheet3 , Sheet4 and Sheet5.&#60;/p&#62;
&#60;p&#62;The range $A$1:$C$4 is a pre-defined range , which contains data ; this is the same on every one of the sheets Sheet2 , Sheet3 ,... Since it is specified within the formula , there is no way that it can vary from one sheet to another ; what you can do is use the largest possible range e.g. $A$1:$C$577. Even if cells in this range are blank , it should not matter. Where ever the value being looked up is present , the corresponding data from that sheet will be returned.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>prajithp on "vlookup multiple worksheet question [SOLVED]"</title>
			<link>http://chandoo.org/forums/topic/vlookup-multiple-worksheet-question#post-104617</link>
			<pubDate>Fri, 24 May 2013 16:44:41 +0000</pubDate>
			<dc:creator>prajithp</dc:creator>
			<guid isPermaLink="false">104617@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Narayan&#60;/p&#62;
&#60;p&#62;I didnt understand how you created the &#34;sheetlist&#34;.Also would like to know if data are more in one sheet and less in other sheet. will this formula work.&#60;/p&#62;
&#60;p&#62;INDIRECT(&#34;'&#34;&#38;amp;INDEX(sheetlist,MATCH(1,--(COUNTIF(INDIRECT(&#34;'&#34;&#38;amp;sheetlist&#38;amp;&#34;'!$A$1:$c$4&#34;),A4)&#38;gt;0),0))&#38;amp;&#34;'!$A$1:$c$4&#34;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Using VBA to show segmented data based on dynamic cell value"</title>
			<link>http://chandoo.org/forums/topic/using-vba-to-show-segmented-data-based-on-dynamic-cell-value#post-104613</link>
			<pubDate>Fri, 24 May 2013 16:17:41 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">104613@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, The Doctor!&#60;/p&#62;
&#60;p&#62;Give a look at this file:&#60;br /&#62;
&#60;a href=&#34;https://dl.dropboxusercontent.com/u/60558749/Using%20VBA%20to%20show%20segmented%20data%20based%20on%20dynamic%20cell%20value%20-%20projection%20problem%20%28for%20The%20Doctor%20at%20chandoo.org%29.xlsx&#34; rel=&#34;nofollow&#34;&#62;https://dl.dropboxusercontent.com/u/60558749/Using%20VBA%20to%20show%20segmented%20data%20based%20on%20dynamic%20cell%20value%20-%20projection%20problem%20%28for%20The%20Doctor%20at%20chandoo.org%29.xlsx&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's your original one with the addition of the range LittleTable3.&#60;/p&#62;
&#60;p&#62;Just advise if any issue.&#60;/p&#62;
&#60;p&#62;Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Faseeh on "excel prob"</title>
			<link>http://chandoo.org/forums/topic/excel-prob#post-104612</link>
			<pubDate>Fri, 24 May 2013 16:08:08 +0000</pubDate>
			<dc:creator>Faseeh</dc:creator>
			<guid isPermaLink="false">104612@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi pjsrkrm,&#60;/p&#62;
&#60;p&#62;Welcome to the fourms! ...You posted two files to dropbox and then??? :)&#60;/p&#62;
&#60;p&#62;Faseeh
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pjsrkrm on "excel prob"</title>
			<link>http://chandoo.org/forums/topic/excel-prob#post-104610</link>
			<pubDate>Fri, 24 May 2013 16:04:11 +0000</pubDate>
			<dc:creator>pjsrkrm</dc:creator>
			<guid isPermaLink="false">104610@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Sir, I have posted in drop box.&#60;br /&#62;
File names : &#60;/p&#62;
&#60;p&#62;1. master.xls&#60;br /&#62;
2. kot-bill1.xls
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DaveTurton on "Excel aptitude test inside a workbook"</title>
			<link>http://chandoo.org/forums/topic/excel-aptitude-test-inside-a-workbook#post-104609</link>
			<pubDate>Fri, 24 May 2013 15:56:23 +0000</pubDate>
			<dc:creator>DaveTurton</dc:creator>
			<guid isPermaLink="false">104609@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Narayan&#60;/p&#62;
&#60;p&#62;That is a nice idea, I'll add it in&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Excel aptitude test inside a workbook"</title>
			<link>http://chandoo.org/forums/topic/excel-aptitude-test-inside-a-workbook#post-104608</link>
			<pubDate>Fri, 24 May 2013 15:50:37 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">104608@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi Dave ,&#60;/p&#62;
&#60;p&#62;I have one suggestion , which may be partly because I love problem solving , but also because I believe that the most important quality in an employee is the willingness to try and solve problems , given that time is not a constraint.&#60;/p&#62;
&#60;p&#62;For a specific example , let us consider question 16 , where you want the candidates to copy and paste ; I would turn this question slightly inside out ; use the copy + paste special multiply facility to put some figures in Table 2 ; ask the candidates to write down how the second table could have been filled.&#60;/p&#62;
&#60;p&#62;To answer this question , the candidate cannot do anything but think ! Either they know or they have to think.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SirJB7 on "Partial Paste Special"</title>
			<link>http://chandoo.org/forums/topic/partial-paste-special#post-104607</link>
			<pubDate>Fri, 24 May 2013 15:49:02 +0000</pubDate>
			<dc:creator>SirJB7</dc:creator>
			<guid isPermaLink="false">104607@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi, Sorabh Gupta!&#60;/p&#62;
&#60;p&#62;Just as an idea, since I agree with what posted regarding the impossibility (not the extreme difficulty) of performing what you want, there might be an alternative solution but requires that the external link always be open and is the use of the INDIRECT function.&#60;/p&#62;
&#60;p&#62;Should that be suitable for you?&#60;/p&#62;
&#60;p&#62;Regards!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Using VBA to show segmented data based on dynamic cell value"</title>
			<link>http://chandoo.org/forums/topic/using-vba-to-show-segmented-data-based-on-dynamic-cell-value#post-104606</link>
			<pubDate>Fri, 24 May 2013 15:42:07 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">104606@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;Can you check your file here ?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://www.dropbox.com/s/9jjqrtmt6muv7m6/projection%20problem.xlsx&#34; rel=&#34;nofollow&#34;&#62;https://www.dropbox.com/s/9jjqrtmt6muv7m6/projection%20problem.xlsx&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have put in the formulae to get the dates , based on some dates prior and some dates after the entered date. You can change the fixed values of 3 and 7 to get the periods prior and after.&#60;/p&#62;
&#60;p&#62;Once the dates are available , the other two columns can be filled in using a simple VLOOKUP.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iram on "calculator for website using google spreadsheets"</title>
			<link>http://chandoo.org/forums/topic/calculator-for-website-using-google-spreadsheets#post-104605</link>
			<pubDate>Fri, 24 May 2013 15:24:38 +0000</pubDate>
			<dc:creator>iram</dc:creator>
			<guid isPermaLink="false">104605@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I've created a very simple spreadsheet to calculate property tax amount. The user needs to input property price. Output is calculated in another column based on a simple formula (property price * city tax rate).&#60;/p&#62;
&#60;p&#62;Here is the problem.&#60;/p&#62;
&#60;p&#62;I am trying to put it up on our internal website so that staff/employees can input the value. If I embed the entire spreadsheet, regardless of the permission I give them, they cannot enter values in it.&#60;/p&#62;
&#60;p&#62;If I publish it as a list, then there are too many steps involved to get the output:&#60;br /&#62;
1. Edit&#60;br /&#62;
2. Enter value&#60;br /&#62;
3. Submit&#60;br /&#62;
4. Refresh&#60;/p&#62;
&#60;p&#62;We use this calc frequently so it needs to be a quick 2-click process. Could you please help me figure out a simple way of doing this?&#60;/p&#62;
&#60;p&#62;Really appreciate everyone's time and help!&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Iram
&#60;/p&#62;</description>
		</item>
		<item>
			<title>The Doctor on "Using VBA to show segmented data based on dynamic cell value"</title>
			<link>http://chandoo.org/forums/topic/using-vba-to-show-segmented-data-based-on-dynamic-cell-value#post-104603</link>
			<pubDate>Fri, 24 May 2013 15:13:58 +0000</pubDate>
			<dc:creator>The Doctor</dc:creator>
			<guid isPermaLink="false">104603@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I must be using this incorrectly, it returns a #Value! when I paste the code in.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>NARAYANK991 on "Populate cell with value from dynamically generated table on a VBA userform"</title>
			<link>http://chandoo.org/forums/topic/populate-cell-with-value-from-dynamically-generated-table-on-a-vba-userform#post-104602</link>
			<pubDate>Fri, 24 May 2013 15:12:53 +0000</pubDate>
			<dc:creator>NARAYANK991</dc:creator>
			<guid isPermaLink="false">104602@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hi ,&#60;/p&#62;
&#60;p&#62;Let us assume the following have been set in the ListBox properties page :&#60;/p&#62;
&#60;p&#62;1.  RowSource : Sheet1!A2:C6&#60;/p&#62;
&#60;p&#62;2.  ColumnCount : 3&#60;/p&#62;
&#60;p&#62;3.  ControlSource : K1&#60;/p&#62;
&#60;p&#62;4.  BoundColumn : 2&#60;/p&#62;
&#60;p&#62;The ListBox will now display 5 rows and 3 columns of data ; suppose you select the third row , then the ControlSource , which is cell K1 on the worksheet , will display the contents of cell B4 , since B4 is the second column in the displayed range ( BoundColumn = 2 ) , and 4 is the third row in the displayed range.&#60;/p&#62;
&#60;p&#62;Narayan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bobhc on "Conditional Formatting (CF) and Pivot Tables (PT)"</title>
			<link>http://chandoo.org/forums/topic/conditional-formatting-cf-and-pivot-tables-pt#post-104601</link>
			<pubDate>Fri, 24 May 2013 15:05:17 +0000</pubDate>
			<dc:creator>bobhc</dc:creator>
			<guid isPermaLink="false">104601@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Good day polarisking&#60;/p&#62;
&#60;p&#62;Have a look at this link, if it does not help perhaps you could upload your work book.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.ablebits.com/office-addins-blog/2011/05/23/excel-conditional-formatting-pivottables/&#34; rel=&#34;nofollow&#34;&#62;http://www.ablebits.com/office-addins-blog/2011/05/23/excel-conditional-formatting-pivottables/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hui on "lock object in excel"</title>
			<link>http://chandoo.org/forums/topic/lock-object-in-excel#post-104600</link>
			<pubDate>Fri, 24 May 2013 14:41:08 +0000</pubDate>
			<dc:creator>Hui</dc:creator>
			<guid isPermaLink="false">104600@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Nipendra &#60;/p&#62;
&#60;p&#62;With all objects in excel including cells, ranges, sheets, charts, and inserted objects&#60;br /&#62;
Right click on the object,&#60;br /&#62;
Properties or Format&#60;br /&#62;
Protection&#60;br /&#62;
Lock Cell/Object&#60;/p&#62;
&#60;p&#62;Ten goto the Review tab&#60;br /&#62;
Protect Sheet&#60;br /&#62;
Assign the level of protection and passwords if required.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DaveTurton on "Excel aptitude test inside a workbook"</title>
			<link>http://chandoo.org/forums/topic/excel-aptitude-test-inside-a-workbook#post-104599</link>
			<pubDate>Fri, 24 May 2013 14:26:25 +0000</pubDate>
			<dc:creator>DaveTurton</dc:creator>
			<guid isPermaLink="false">104599@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I've updated it &#60;a href=&#34;https://docs.google.com/file/d/0ByiZqUlQMjxhQjV3aXQ5U3g3OXc/edit?usp=sharing&#34; rel=&#34;nofollow&#34;&#62;https://docs.google.com/file/d/0ByiZqUlQMjxhQjV3aXQ5U3g3OXc/edit?usp=sharing&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now had 17 questions which I think just about cover what I need to gauge a basic understanding of what I need from them. Very simple stuff but at least it shows whether or not they have used excel for more than just putting pretty colours in cells.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>polarisking on "Conditional Formatting (CF) and Pivot Tables (PT)"</title>
			<link>http://chandoo.org/forums/topic/conditional-formatting-cf-and-pivot-tables-pt#post-104596</link>
			<pubDate>Fri, 24 May 2013 14:17:32 +0000</pubDate>
			<dc:creator>polarisking</dc:creator>
			<guid isPermaLink="false">104596@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I'm using MS Office Professional Plus. I'd like to invoke the Apply Rule to . . . option when CF a PT. But no matter how I try, I never get the option to CF based on&#60;br /&#62;
- Selected Cells&#60;br /&#62;
- All Cells showing &#34;XXX&#34; values&#60;br /&#62;
- All Cells showing &#34;XXX&#34; values for &#34;YY&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Indian on "Excel aptitude test inside a workbook"</title>
			<link>http://chandoo.org/forums/topic/excel-aptitude-test-inside-a-workbook#post-104595</link>
			<pubDate>Fri, 24 May 2013 14:15:57 +0000</pubDate>
			<dc:creator>Indian</dc:creator>
			<guid isPermaLink="false">104595@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Kudos...I loved solving them (Don't know why)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>krislopmar on "Create a dynamic range name without offset that includes rows inserted in betwee"</title>
			<link>http://chandoo.org/forums/topic/create-a-dynamic-range-name-without-offset-that-includes-rows-inserted-in-betwee#post-104590</link>
			<pubDate>Fri, 24 May 2013 13:49:54 +0000</pubDate>
			<dc:creator>krislopmar</dc:creator>
			<guid isPermaLink="false">104590@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Please, delete this post. I dont know why but now its working perfectly. I think when adding the range of the name without $, it all got messed up. &#60;/p&#62;
&#60;p&#62;Thanks for the forum, great help always!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>krislopmar on "Create a dynamic range name without offset that includes rows inserted in betwee"</title>
			<link>http://chandoo.org/forums/topic/create-a-dynamic-range-name-without-offset-that-includes-rows-inserted-in-betwee#post-104589</link>
			<pubDate>Fri, 24 May 2013 13:37:01 +0000</pubDate>
			<dc:creator>krislopmar</dc:creator>
			<guid isPermaLink="false">104589@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Hello, I have the following set of data:&#60;br /&#62;
1 AGENCIES&#60;br /&#62;
2 German Agency 1&#60;br /&#62;
3 German Agency 2&#60;br /&#62;
4 German Agency 3&#60;br /&#62;
..&#60;br /&#62;
10 Total Germany&#60;br /&#62;
11 Swiss Agency 1&#60;br /&#62;
12 Swiss Agency 2&#60;br /&#62;
...&#60;br /&#62;
15 Total Switzerland&#60;br /&#62;
ETC&#60;/p&#62;
&#60;p&#62;In order to create a list in another sheet that allows me to choose any from the German agencies I have created a dynamic range $A$2:$A10, but I have to add another agency (for example between number 2 and 3) the dynamic range doesnt become $A$2:$A11.&#60;br /&#62;
The problem is that there is a long list of agencies with subtotals per country and for each one of the countries I need a different range name set up. The only way I modify this long list is adding agencies by inserting rows where it corresponds. I dont know how to fix this. Any help will be welcome and very much appreciated!! Im using Excel 2007. Many thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dronka on "Populate cell with value from dynamically generated table on a VBA userform"</title>
			<link>http://chandoo.org/forums/topic/populate-cell-with-value-from-dynamically-generated-table-on-a-vba-userform#post-104588</link>
			<pubDate>Fri, 24 May 2013 13:22:35 +0000</pubDate>
			<dc:creator>dronka</dc:creator>
			<guid isPermaLink="false">104588@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Great! I've been able to create a userform that displays multiple rows and columns of data from Sheet 1.&#60;/p&#62;
&#60;p&#62;Now I'm wondering how to select one of the rows in the user form and transfer a data element in that row into a cell on Sheet 2. Narayan mentioned the BoundColumn property. I did some searches on that and found a lot of complex code. Is there an &#34;easy&#34; way to do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DaveTurton on "Excel aptitude test inside a workbook"</title>
			<link>http://chandoo.org/forums/topic/excel-aptitude-test-inside-a-workbook#post-104585</link>
			<pubDate>Fri, 24 May 2013 12:35:17 +0000</pubDate>
			<dc:creator>DaveTurton</dc:creator>
			<guid isPermaLink="false">104585@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;I have made a start, this is the sort of thing I am thinking of &#60;a href=&#34;https://docs.google.com/file/d/0ByiZqUlQMjxhaW96bXBzU01Wa1E/edit?usp=sharing&#34; rel=&#34;nofollow&#34;&#62;https://docs.google.com/file/d/0ByiZqUlQMjxhaW96bXBzU01Wa1E/edit?usp=sharing&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shrivallabha on "Retrieve one numerical value in a row spanning multiple columns [SOLVED]"</title>
			<link>http://chandoo.org/forums/topic/how-to-find-and-display-one-numerical-value-in-a-row-spanning-multiple-columns#post-104582</link>
			<pubDate>Fri, 24 May 2013 12:17:29 +0000</pubDate>
			<dc:creator>shrivallabha</dc:creator>
			<guid isPermaLink="false">104582@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;flywhiz,&#60;/p&#62;
&#60;p&#62;There are some formulas which will also work just for your info.&#60;br /&#62;
&#60;strong&#62;=HLOOKUP(MAX(Budget!C46:Z46),Budget!C46:Z47,2,0)&#60;/strong&#62;&#60;br /&#62;
and ubiquitous INDEX/MATCH&#60;br /&#62;
&#60;strong&#62;=INDEX(Budget!C47:Z47,1,MATCH(MAX(Budget!C46:Z46),Budget!C46:Z46,0))&#60;/strong&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sallan on "price breaks based on volume and a threshold"</title>
			<link>http://chandoo.org/forums/topic/price-breaks-based-on-volume-and-a-threshold#post-104581</link>
			<pubDate>Fri, 24 May 2013 12:07:50 +0000</pubDate>
			<dc:creator>sallan</dc:creator>
			<guid isPermaLink="false">104581@http://chandoo.org/forums/</guid>
			<description>&#60;p&#62;Thanks for this I will take a look over the weekend&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;sam
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
