<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Tildemark blogs</title>
        <link>http://www.tildemark.com/</link>
        <description>Blogging on uniquely random things. </description>
        <language>en</language>
        <copyright>Copyright 2008</copyright>
        <lastBuildDate>Fri, 11 Jan 2008 16:48:59 +0800</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Merging Adjacent Cells in Excel</title>
            <description><![CDATA[<p>The merge and Center button in Excel only centers the top left text and deletes the rest. What if the two columns of First names and last names are to be merged into the format: Last name, First name it would then become a problem. </p>

<p>Using the Ampersand ( & ) operator, it allows us to merge cells in an excel worksheet. you can create a formula to merge cells in excel or just insert it right away on the cell formula bar. </p>

<p>Problem:<br />
And you wish to merge the two cells at A1 and A2 to the cell at A3</p>

<p>Given: <br />
Cell A1 has the text "Lastname"<br />
Cell A2 has the text "Firstname"</p>

<p>Solution:<br />
* First position your active cell on A3.<br />
* On the formula bar input the following: =A1&A2 [ENTER]</p>

<p>It should display LastnameFirstname on cell A3</p>

<p>To add a space and a comma, use the following:<br />
=A1&", "&A2<br />
it will output: Lastname, Firstname</p>

<p>alternatively you can also use the concatenate function, like this:<br />
=CONCATENATE(A1,", ",A2)</p>]]></description>
            <link>http://www.tildemark.com/at-work/merging-adjacent-cells-in-excel.html</link>
            <guid>http://www.tildemark.com/at-work/merging-adjacent-cells-in-excel.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">At Work</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Desktop Applications</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Tips</category>
            
            
            <pubDate>Fri, 11 Jan 2008 16:48:59 +0800</pubDate>
        </item>
        
        <item>
            <title>Removing Duplicates in an Excel Column</title>
            <description><![CDATA[Usually when doing some 'copy' 'and paste' stuff would end with so many duplicates. It would be very tedious in manually editing them. when collecting sites for link exchanges, we will get lots of duplicate domains especially from google and wikipedia which most of the links. <br />
<br />
Normally, we use advanced filter but something is wrong with it, its not filtering the character 'a'. I got two of them and the result still has two of them. Here is how i did it with advanced filter.<br />
<br />
1. Click On an empty cell column<br />
2. On the menu choose: Data -> Filter -> Advanced Filter<br />
3. In the dialog box, type in the range of cells to filter at the List Range text box. e.g. type in $A$2:$A$1319  for cell A2 to cell A1319<br />
4. On the Copy to text box type in the cell location of the output (filtered list)<br />
5. Click on the Unique records only check box<br />
6. Press OK<br />
<br />
With the <a href="http://www.tildemark.com/tools">tool duplicate remover</a>, we could remove repeating domain names in an instant. But if we are just simply collecting words and similar list that we become another story. Usually we collect word or phrases and paste them in an excel worksheet. but the question is how to filter the list and remove the duplicates? well i run unto the same problems and luckily i found a macro on the internet, so it saved me the time in creating one. <br />
<br />
   1. Open Excel.<br />
   2. Alt + F11 to open the Visual Basic Editor (VBE).<br />
   3. Insert-Module.<br />
   4. Paste the code below.<br />
   5. Close the VBE (Alt + Q or the X in the top-right corner).<br />
 <br />
<b>Excel Macro</b>
<pre>
<p style="margin: 6px 0px; font-family: Courier; font-style: normal; font-variant: normal; font-weight: normal; font-size: 15px; line-height: normal; font-size-adjust: none; font-stretch: normal;"><font color="blue">Option Explicit</font> 
 
<font color="blue">Sub</font> DeleteDups() 
     
   <font color="blue">Dim</font> x               <font color="blue">As</font> <font color="blue">Long</font> 
   <font color="blue">Dim</font> LastRow         <font color="blue">As</font> <font color="blue">Long</font> 
     
   LastRow = Range("A65536").End(xlUp).Row 
   <font color="blue">For</font> x = LastRow <font color="blue">To</font> 1 <font color="blue">Step</font> -1 
       <font color="blue">If</font> Application.WorksheetFunction.CountIf(Range("A1:A" &amp; x), Range("A" &amp; x).Text) &gt; 1 <font color="blue">Then</font> 
           Range("A" &amp; x).EntireRow.Delete 
       <font color="blue">End</font> <font color="blue">If</font> 
   <font color="blue">Next</font> x 
     
<font color="blue">End Sub</font> </p>
			</pre>

<b>Test the Code</b><br />
   1. In Column A add any data.<br />
   2. Tools-Macro-Macros<br />
   3. Select DeleteDups and press Run.<br />
<br />
source: <a href="http://www.vbaexpress.com/kb/getarticle.php?kb_id=135">remove duplicates</a>]]></description>
            <link>http://www.tildemark.com/at-work/removing-duplicates-in-an-excel-column.html</link>
            <guid>http://www.tildemark.com/at-work/removing-duplicates-in-an-excel-column.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">At Work</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Desktop Applications</category>
            
            
            <pubDate>Mon, 17 Dec 2007 16:06:40 +0800</pubDate>
        </item>
        
        <item>
            <title>Adding Dynamic Hyperlinks in Excel</title>
            <description><![CDATA[<p>Creating a hyperlink in excel is simple. Notice that after typing any uri in excel the text automatically turned into a hyperlink. You can add any link as you like in excel as long as there is a prepended http:// phrase before the text entered.</p>

<p>Now, what if we are going to add a dynamic URL? It would be best explained by example, so here it goes.</p>

<p>For example: We are asked to check multiple sites for the following internet standards; W3C HTML Validator and WDG HTML Validator.</p>

<p>We have a reference cell A1 have the text http://tildemark.com. We all know the URL for the respective standards as: </p>

<p>W3C - http://validator.w3.org/check?uri=http://www.tildemark.com<br />
WDG - http://www.htmlhelp.com/cgi-bin/validate.cgi?url=http://www.tildemark.com&warnings=yes</p>

<p>Now, all we need to create an entry such that each time we change the domain names the entry on each validator also changes. </p>

<p>Do the following on Excel:</p>

<p>Cell A1 - http://www.tildemark.com</p>

<table cellpadding="2" cellspacing="0" border="1" width="100%">
<tr bgcolor=#009900>
<th valign="top" bgcolor=#009900>&nbsp;</th>
<th align="center"><b>A</b>
<th align="center"><b>B</b></th>
</tr>
<tr><th bgcolor=#009900>1</th><td>http://www.tildemark.com</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr>
<tr><th bgcolor=#009900>2</th><td valign="top">&nbsp;</td><td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>3</th><td valign="top">&nbsp;</td><td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>4</th><td valign="top">&nbsp;</td><td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>5</th><td valign="top">&nbsp;</td><td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>...</th><td valign="top">&nbsp;</td><td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>9</th><td>=HYPERLINK<br />
  ("http://validator.w3.org/check?uri="&A1,"Check W3C HTML Validator")</td>
<td valign="top">&nbsp;</td></tr>
<tr><th bgcolor=#009900>10</th><td><p>=HYPERLINK<br />
  ("http://www.htmlhelp.com/cgi-bin/validate.cgi?url="&A9&"&warnings=yes",<br />
  "Page passed WDG validator")</p>
  </td><td valign="top">&nbsp;</td></tr>
</table>

<p>More info at <a href="http://office.microsoft.com/en-us/assistance/HP052091161033.aspx">Office Website</a>.</p>]]></description>
            <link>http://www.tildemark.com/at-work/adding-dynamic-hyperlinks-in-excel.html</link>
            <guid>http://www.tildemark.com/at-work/adding-dynamic-hyperlinks-in-excel.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">At Work</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Desktop Applications</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Tips</category>
            
            
            <pubDate>Sat, 14 Oct 2006 10:32:33 +0800</pubDate>
        </item>
        
        <item>
            <title>Removing multiple hyperlinks in Excel</title>
            <description><![CDATA[<p>Removing a bunch of hyperlinks can be tedious. imagine the time you have to right-click on each of those links and selecting 'remove hyperlink' on the context menu. Of course it would just take two clicks, but what if you are to remove a hundred of them or perhaps 1000 of them? I'm sure that would scrape out the paint of your right-mouse button. :) </p>

<p>I have some simple techniques you can use in order to remove multiple hyperlinks on a page: </p>

<p><b>Removing just one hyperlink</b><br />
1. <strong>Right-Click</strong> on the cell and select <strong>Remove Hyperlink</strong> on the context menu.</p>

<p><b>Removing the cell format</b><br />
1. Select the cells having hyperlinks. You can use <strong>CTRL+LEFT CLICK</strong> to randomly select a cell.<br />
2. On the menu click on <strong>Edit</strong>. Hover your mouse to the option <strong>Clear</strong> and select <strong>Fomats</strong>. Please note that the cell is still clickable to remove the hyperlink completely you have to select <strong>Clear</strong>-><strong>All</strong>.</p>

<p><b>Remove hyperlink on selected cells the better way</b><br />
1. Type in any text or number in a blank cell<br />
2. Right-click and select Copy on the context menu.<br />
3. While pressing CTRL, select each hyperlink you wish to be removed<br />
4. On the Edit menu, select <strong>Paste Special</strong>.<br />
5. Under Operation, click <strong>Multiply</strong> and then click OK.</p>

<p><b>Removing using a macro</b><br />
Assuming you know excel programming you could create a macro to automatically remove the hyperlinks. <br />
1. Start Visual Basic Editor. Alternatively you can press <strong>ALT-F11</strong> to start the editor.<br />
2. Double click the workbook you are using on the Project Explorer.<br />
3. Type the following text:<br />
<div class="module-code"><br />
Sub RemoveHyperlinks()<br />
    ActiveSheet.Hyperlinks.Delete<br />
End Sub<br />
</div><br />
4. Save your work.<br />
5. Run your macro by pressing ALT-F8 or using the menu by Tools->Macro->Macros<br />
6. Select the macro you have made, it should have the name 'RemoveHyperlinks'. <br />
<br /><br />
</p>]]></description>
            <link>http://www.tildemark.com/at-work/removing-multiple-hyperlinks-in-excel.html</link>
            <guid>http://www.tildemark.com/at-work/removing-multiple-hyperlinks-in-excel.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">At Work</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Desktop Applications</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Tips</category>
            
            
            <pubDate>Wed, 11 Oct 2006 11:24:17 +0800</pubDate>
        </item>
        
    </channel>
</rss>






