<?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>Excel Programming &#8211; Sibeesh Passion</title>
	<atom:link href="https://sibeeshpassion.com/category/excel-programming/feed/" rel="self" type="application/rss+xml" />
	<link>https://sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Wed, 13 Jan 2016 10:21:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>Excel Programming &#8211; Sibeesh Passion</title>
	<link>https://sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Find The Existence Of A String In Other Column</title>
		<link>https://sibeeshpassion.com/find-the-existence-of-a-string-in-other-column/</link>
					<comments>https://sibeeshpassion.com/find-the-existence-of-a-string-in-other-column/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Wed, 13 Jan 2016 10:21:22 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Excel Programming]]></category>
		<category><![CDATA[code snippet]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=11109</guid>

					<description><![CDATA[In this post we will see how we can find the existence of a string in other columns in Excel. We will be using a single excel formula to do this task. I hope you will like this. [csharp] =COUNTIF(A1:A80,&#34;*&#34;&#38;B2&#38;&#34;*&#34;)&#62; 0 [/csharp] Here we are checking the value of B2 cell is existed anywhere in column A. If the value exists, it will return TRUE or FALSE. Please see my other posts code snippets here: Code Snippets Kindest Regards Sibeesh Venu]]></description>
										<content:encoded><![CDATA[<p>In this post we will see how we can find the existence of a string in other columns in Excel. We will be using a single excel formula to do this task. I hope you will like this. </p>
<p>[csharp]<br />
=COUNTIF(A1:A80,&quot;*&quot;&amp;B2&amp;&quot;*&quot;)&gt; 0<br />
[/csharp]</p>
<p>Here we are checking the value of B2 cell is existed anywhere in column A. If the value exists, it will return TRUE or FALSE. </p>
<p>Please see my other posts code snippets here: <a href="http://sibeeshpassion.com/category/code-snippets/" target="_blank">Code Snippets</a></p>
<p>Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/find-the-existence-of-a-string-in-other-column/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Show Or Hide Columns In Excel</title>
		<link>https://sibeeshpassion.com/how-to-show-or-hide-columns-in-excel/</link>
					<comments>https://sibeeshpassion.com/how-to-show-or-hide-columns-in-excel/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 12 Jul 2015 14:13:59 +0000</pubDate>
				<category><![CDATA[Excel Programming]]></category>
		<category><![CDATA[Hide columns in Excel]]></category>
		<category><![CDATA[Show columns in Excel]]></category>
		<category><![CDATA[Show or hide columns in Excel]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=6821</guid>

					<description><![CDATA[Introduction In this article we will learn how we can show or hide columns in excel. I hope you will like it. Background Today I was working in a Report that I am maintaining for myself . It actually contains my debit/credit details of a month. And I was in a need of hiding a column &#8220;Credit&#8221; from the report and generate a PDF file. And I did that. I thought of sharing you all that. I hope someone may find it is useful. How to show or hide columns in Excel To do so, we will create a dummy [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>In this article we will learn how we can show or hide columns in excel. I hope you will like it.</p>
<p><strong>Background</strong></p>
<p>Today I was working in a Report that I am maintaining for myself . It actually contains my debit/credit details of a month. And I was in a need of hiding a column &#8220;Credit&#8221; from the report and generate a PDF file. And I did that. I thought of sharing you all that. I hope someone may find it is useful.</p>
<p><strong>How to show or hide columns in Excel</strong></p>
<p>To do so, we will create a dummy excel file as follows.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/Showorhidecolumnsinexcel1.png" alt="Show Hide Columns In Excel"/></p>
<p>Now it is time for action.</p>
<p>Click on the home tab, and go to Format menu.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/Showorhidecolumnsinexcel2.png" alt="Show Hide Columns In Excel"/> </p>
<p>Now click on the format menu, and then click <em>Hide&#038;Unhide </em> under visibility menu. Now click on hide column.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/Showorhidecolumnsinexcel3.png" alt="Show Hide Columns In Excel"/> </p>
<p>Now if you see your excel file, you can see the selected column has been hide.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/Showorhidecolumnsinexcel4.png" alt="Show Hide Columns In Excel"/> </p>
<p>To make it show, you just need to follow the same procedure that we just followed now. You can see an Unhide option in the same <em>Hide&#038;Unhide </em> menu.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/Showorhidecolumnsinexcel5.png" alt="Show Hide Columns In Excel"/> </p>
<p><strong>Conclusion</strong></p>
<p>That is all. I hope you liked this article. Please share me your feedback.</p>
<p>Kindest Regards<br />
<a href="http://sibeeshpassion.com/" target="_blank">Sibeesh Venu</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/how-to-show-or-hide-columns-in-excel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Transpose Row Values To Column In Excel</title>
		<link>https://sibeeshpassion.com/transpose-row-values-to-column-in-excel/</link>
					<comments>https://sibeeshpassion.com/transpose-row-values-to-column-in-excel/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Mon, 06 Jul 2015 09:21:33 +0000</pubDate>
				<category><![CDATA[Excel Programming]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Change rows to columns]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Excel rows interchange]]></category>
		<category><![CDATA[Excel Transpose]]></category>
		<category><![CDATA[transpose rows column]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=6291</guid>

					<description><![CDATA[Introduction In this article, we will see how we can transpose or change row values to column in EXCEL. I hope you will like it. Background Today when I was just analysing my grid data in office, I just copied some of the conditions in the grid, Since all of the values were in row, it was not pretty much readable. So I thought of changing the values to the columns. And I did. Hereby I am that with you all. How to do it? Before going to see how we can do that, please have a look at the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span style="color: #ff6600;"><strong>Introduction</strong></span></p>
<p>In this article, we will see how we can transpose or change row values to column in EXCEL. I hope you will like it.</p>
<p><span style="color: #ff6600;"><strong>Background</strong></span></p>
<p>Today when I was just analysing my grid data in office, I just copied some of the conditions in the grid, Since all of the values were in row, it was not pretty much readable. So I thought of changing the values to the columns. And I did. Hereby I am that with you all.</p>
<p><span style="color: #ff6600;"><strong>How to do it?</strong></span></p>
<p>Before going to see how we can do that, please have a look at the data which I have before I transpose. </p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/tansposeexcelrowtocolumn1.png" alt="" /></p>
<p>Please download the <a href="http://sibeeshpassion.com/download/transpose.xlsx" target="_blank">transpose.xlsx</a> for viewing the data in excel.</p>
<p>Now what I need is to change those values to column. Right? For that you need to follow the below mentioned steps.</p>
<p><strong>Step 1</strong></p>
<p>Copy the entire data ( Select the row and click ctrl+c)</p>
<p><strong>Step 2</strong></p>
<p>Now click on a cell where you need those data to be pasted.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/tansposeexcelrowtocolumn2.png" alt="" /></p>
<p><strong>Step 3</strong></p>
<p>Now Right click on the cell and click Paste Special and click Transpose.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/tansposeexcelrowtocolumn3.png" alt="" /></p>
<p><strong>Step 4</strong></p>
<p>Now that is all, we have done it. Now you will see your excel as below.</p>
<p><img decoding="async" src="http://sibeeshpassion.com/content/images/tansposeexcelrowtocolumn4.png" alt="" /></p>
<p><span style="color: #ff6600;"><strong>Conclusion</strong></span></p>
<p>I hope someone found this article useful. Please share me your valuable thoughts and comments. Your feedback is always welcomed.</p>
<p>Thanks in advance. Happy coding!</p>
<p>Kindest Regards<br />
<a href="https://plus.google.com/+sibeeshkv" target="_blank">Sibeesh Venu</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/transpose-row-values-to-column-in-excel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
