 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Excel 2003 macros</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/excel-2003-macros/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Macro using Visual Basic</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/macro-using-visual-basic/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/macro-using-visual-basic/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 16:28:52 +0000</pubDate>
		<dc:creator>JoyStrassacapa</dc:creator>
				<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/macro-using-visual-basic/</guid>
		<description><![CDATA[New Answer by TomLiotta]]></description>
				<content:encoded><![CDATA[New Answer by TomLiotta]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/macro-using-visual-basic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Message Alert Box in Excel 2003</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/messgae-alert-box/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/messgae-alert-box/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 10:30:10 +0000</pubDate>
		<dc:creator>Eron09</dc:creator>
				<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 functions]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Excel macros]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a two files, one is the consolidated time monitoring and the other file is the individual time monitoring. The individual time monitoring file has 30 sheets which is the name of each agent and in shared mode. On that file, agents are responsible to provide/indicate the things that they&#8217;ve done everyday&#8230;for the whole week. [...]]]></description>
				<content:encoded><![CDATA[<p>I have a two files, one is the consolidated time monitoring and the other file is the individual time monitoring. <br/><br/> The individual time monitoring file has 30 sheets which is the name of each agent and in shared mode. On that file, agents are responsible to provide/indicate the things that they&#8217;ve done everyday&#8230;for the whole week. The total time should not be less that 40:00 hrs (8hrs x 5 days). Each sheet ha a formula in &#8220;B2&#8243; that sums all time they entered in column J.<br/><br/> The Consolidated time monitoring, is a file wherein all data in Individual Time Monitoring is placed in 1 sheet. This file has a macro that I run to copypaste all data in each sheet of Individual Time Monitoring. My proble is, I am having a hard time with the total number of hours because I have to check each sheet if its already 40hrs or more. My question is, how can i add a macro where in a message alert will pop-up and show that a certain sheet/s&#8217; total time is not yet 40hrs and if possible to give the name of the sheet where the total time in &#8220;B2&#8243; is not yet 40 hrs.<br/><br/> Here is the macro that I run in the Consolidated Time Monitoring File.<br/><br/>     ChDir &#8220;P:MY REPORTDecemberDecember 20 &#8211; 25&#8243;     Workbooks.Open Filename:= _         &#8220;P:MY REPORTDecemberDecember 20 &#8211; 25December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;     Sheets(&#8220;Mon&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Alma&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Ivan&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;RC&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Tala&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Peter&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Gerry&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Zhaque&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Rona&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Ize&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Dana&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Jojie&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Erwin&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Nino&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Anne&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Heizel&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Aaron&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Delia&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Edsel&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Bless&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Jaz&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;PJ&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Bran&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Richmon&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Billy&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Ryan&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Cris&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Dean&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Irish&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Patrick&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Gem&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Aileen&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Sheets(&#8220;Carlo&#8221;).Select     Range(&#8220;A6:K1000&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;A65536&#8243;).End(xlUp).Select     ActiveCell.Offset(1, 0).Select     Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _         :=False, Transpose:=False<br/><br/>     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Range(&#8220;G6&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;G2:G6000&#8243;).Select     Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _         SkipBlanks:=False, Transpose:=False     Windows(&#8220;December 20 &#8211; 25  Data Team Utilization Report.xls&#8221;).Activate     Range(&#8220;I6&#8243;).Select     Application.CutCopyMode = False     Selection.Copy     Windows(&#8220;Consolidated &#8211; Utilization Report.xls&#8221;).Activate     Range(&#8220;I2:I2030&#8243;).Select     Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _         SkipBlanks:=False, Transpose:=False     Range(&#8220;A2&#8243;).Select<br/><br/>     End Sub<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/messgae-alert-box/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excel 2003 Macros with Org Chart Parent</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/macro-with-org-chart-parent/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/macro-with-org-chart-parent/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 15:53:45 +0000</pubDate>
		<dc:creator>Vanillathunderrr</dc:creator>
				<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Excel macros]]></category>
		<category><![CDATA[Excel Tables]]></category>
		<category><![CDATA[Excel VBA]]></category>
		<category><![CDATA[Macros]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I have a corporate org chart for which I am trying to write a macro. The Excel workbook is set up so that each company is in a unique cell. The subsidiary is one column to the right. For instance, I would like to return the values in the far right column for the [...]]]></description>
				<content:encoded><![CDATA[<p>Hello, I have a corporate org chart for which I am trying to write a macro.  The Excel workbook is set up so that each company is in a unique cell.  The subsidiary is one column to the right.  For instance, I would like to return the values in the far right column for the data below.  Thank you.</p>
<p>COL<br />
  A    B    C              F</p>
<p>AAA			</p>
<p>      BBB               		AAA</p>
<p>      CCC               AAA</p>
<p>            DDD        	CCC</p>
<p>      EEE                 AAA</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/macro-with-org-chart-parent/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VBA macro to search macros in workbooks</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vba-macro-to-search-macros-in-workbooks/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vba-macro-to-search-macros-in-workbooks/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:54:02 +0000</pubDate>
		<dc:creator>Smf</dc:creator>
				<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Microsoft Office VBA]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have an Excel macro that will search folders for .xls workbooks and can open them. Now I need to search the macros for any reference to a unc path. How do I search a macro?  ]]></description>
				<content:encoded><![CDATA[<p>I have an Excel macro that will search folders for .xls workbooks and can open them. Now I need to search the macros for any reference to a unc path. How do I search a macro? <br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vba-macro-to-search-macros-in-workbooks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting rid of multiple macro copies in Excel 2003</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-rid-of-multiple-macro-copies-on-main-toolbar/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/getting-rid-of-multiple-macro-copies-on-main-toolbar/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 06:06:27 +0000</pubDate>
		<dc:creator>Rerics59</dc:creator>
				<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Windows XP administration]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Somehow, in Excel 2003 I have 4 copies of the same macro on the toolbar (not sure how that happened).  However, when I click on Tools&#62;Macro&#62;Macros, there are no macros shown, and all options are grayed out except Cancel.  When I go to Tools&#62;Add-ins, one copy of the macro is shown, and it is checked.  [...]]]></description>
				<content:encoded><![CDATA[<p>Somehow, in Excel 2003 I have 4 copies of the same macro on the<br />
toolbar (not sure how that happened).  However, when I click on<br />
Tools&gt;Macro&gt;Macros, there are no macros shown, and all options are grayed<br />
out except Cancel.  When I go to<br />
Tools&gt;Add-ins, one copy of the macro is shown, and it is checked.  How do I remove the copies on the toolbar so<br />
that just one is showing?<b></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/getting-rid-of-multiple-macro-copies-on-main-toolbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Excel 2003 Macros</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/microsoft/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/microsoft/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:45:04 +0000</pubDate>
		<dc:creator>Danielm55</dc:creator>
				<category><![CDATA[Excel 2003 macros]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have an shared excel workbook that has a macro for auto save (update), The problem users are having is while working on different excel workbooks not linked to the shared workbook, when the auto save starts on the shared workbook all other excel workbooks become inactive until the auto save is complete. Is there [...]]]></description>
				<content:encoded><![CDATA[<p>I have an shared excel workbook that has a macro for auto save (update), The problem users are having is while working on different excel workbooks not linked to the shared workbook, when the auto save starts on the shared workbook all other excel workbooks become inactive until the auto save is complete. <br/><br/> Is there a macro to stop other workbooks from becoming inactive when the shared workbook starts auto saving?<br/><br/>  <br/><br/>  <br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing reference to Microsoft Office 11 Object Library</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/missing-reference-to-microsoft-office-11-object-library/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/missing-reference-to-microsoft-office-11-object-library/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 13:29:52 +0000</pubDate>
		<dc:creator>Smf</dc:creator>
				<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[VBA EXCEL 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Using MS Office Excel 2003 on XP I have written a number of macros that use the following code, With Application.FileDialog(msoFileDialogFilePicker)&#8230;. Something (?) has happened and now this portion doesn&#8217;t work any longer.  When clicking on the macro I get the error variable not defined with the msoFileDialogFilePicker highlighted.  When I look at the references [...]]]></description>
				<content:encoded><![CDATA[<p>Using MS Office Excel 2003 on XP <br/><br/> I have written a number of macros that use the following code,<br/><br/> With Application.FileDialog(msoFileDialogFilePicker)&#8230;.<br/><br/> Something (?) has happened and now this portion doesn&#8217;t work any longer.  When clicking on the macro I get the error variable not defined with the msoFileDialogFilePicker highlighted.  <br/><br/> When I look at the references I don&#8217;t have the choice of the Microsoft Office 11 Object Library.  The macros have been working for several months so I know that the code is OK.  <br/><br/> What dll could have changed or is missing?<br/><br/> Thanks<br/><br/> Susan<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/missing-reference-to-microsoft-office-11-object-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horizontal to vertical</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/horizontal-to-vertical/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/horizontal-to-vertical/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 20:09:11 +0000</pubDate>
		<dc:creator>Mike50</dc:creator>
				<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Excel macros]]></category>
		<category><![CDATA[Microsoft Excel]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how do you change a horizontal excel 2003 spreadsheet with qty breaks to a vertical speadsheet with quantitiy break or is there a marco]]></description>
				<content:encoded><![CDATA[<p>how do you change a horizontal excel 2003 spreadsheet with qty breaks to a vertical speadsheet with quantitiy break or is there a marco</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/horizontal-to-vertical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel 2003 Help: How to delete duplicates from specific colums and criteria</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-how-to-delete-duplicates-from-specific-colums-and-criteria/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/help-how-to-delete-duplicates-from-specific-colums-and-criteria/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:02:44 +0000</pubDate>
		<dc:creator>Groom</dc:creator>
				<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Microsoft Excel 2003]]></category>
		<category><![CDATA[Microsoft Excel 2003 macros]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[Visual Basic for Applications]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi I have already sent my question here: http://www.vbforums.com/showthread.php?p=3477514#post3477514 But I will ask the same again: In my Excel file I have several columns and lots of rows. I want the macro to check the column named REF (let say it&#8217;s in the B column). And it will check if other data contains the exact [...]]]></description>
				<content:encoded><![CDATA[<p>Hi<br />
I have already sent my question here: http://www.vbforums.com/showthread.php?p=3477514#post3477514</p>
<p>But I will ask the same again: </p>
<p>In my Excel file I have several columns and lots of rows.</p>
<p>I want the macro to check the column named REF (let say it&#8217;s in the B column).<br />
And it will check if other data contains the exact same characters/word.  (<b>this is  a possible duplicate)</b></p>
<p>If yes, then the next column to be checked is SEQ (let say it&#8217;s in the column F).<br />
If other data contains the exact same characters/word.  (this<b> confirms </b>that this is a <b>duplicate,</b> <b>but no deletion yet, see below</b>)</p>
<p>Then the last column to be checked is STAT (let say it&#8217;s in column K).</p>
<p>Now here is where the <b>deletion will take on</b>. <b>The criteria is</b>:</p>
<p>Example:<br />
Row 321 och 400 has the same REF and SEQ  </p>
<p>STAT for 321 is other than MAK  and<br />
STAT for 400 is other than MAK,<br />
then only one of them should stay.</p>
<p>STAT for 321 is MAK and<br />
STAT for 400 is other than MAK,<br />
then MAK should stay</p>
<p>STAT for 321 is MAK and<br />
STAT for 400 is MAK,<br />
then only one of them should stay.</p>
<p>How can I program this?</p>
<p>Thanks in advance<br />
Best Regards<br />
Groom</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/help-how-to-delete-duplicates-from-specific-colums-and-criteria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am getting &#8220;compiler error in hidden module&#8221; error in Excel 2003 while running Macro</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-compiler-error-in-hidden-module-error-in-excel-2003-while-running-macro/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-compiler-error-in-hidden-module-error-in-excel-2003-while-running-macro/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 07:24:05 +0000</pubDate>
		<dc:creator>Shirishbidarkar</dc:creator>
				<category><![CDATA[Compile error in hidden module]]></category>
		<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2003 macros]]></category>
		<category><![CDATA[Excel macros]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft Excel 2003]]></category>
		<category><![CDATA[Microsoft Excel error messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am getting :&#8221;compiler error in hidden module &#8221; error in EXCEL 2003 only while running MACRO. Actully this MACRO is running on some PCs &#038; for some PCs it is showing that error. The installation of MS EXCEL 2003 is same on all PCs. Please help me ASAP. Thanks in advance !]]></description>
				<content:encoded><![CDATA[<p>I am getting :&#8221;compiler error in hidden module &#8221; error in EXCEL 2003 only while running MACRO. Actully this MACRO is running on some PCs &#038; for some PCs it is showing that error. The installation of MS EXCEL 2003 is same on all PCs. Please help me ASAP.</p>
<p>Thanks in advance !</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-compiler-error-in-hidden-module-error-in-excel-2003-while-running-macro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/24 queries in 0.033 seconds using memcached
Object Caching 927/1056 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 14:10:03 -->