<?xml version="1.0" encoding="UTF-8"?>
<rss 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" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for X-Squared On Demand</title>
	
	<link>http://www.x2od.com</link>
	<description>Salesforce Partner Consultants</description>
	<lastBuildDate>Thu, 02 Feb 2012 16:32:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/x2od_comments" /><feedburner:info uri="x2od_comments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on Workflow ISCHANGED() translated to Apex trigger by David Schach</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/Rj5ih3BNVes/workflow-ischanged-translated-to-apex-trigger</link>
		<dc:creator>David Schach</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1487#comment-993</guid>
		<description>Interesting. We differ in that I don't think initializing a counter and doing a for loop like that is at all easier. In general, keeping variables to a minimum seems a best-practice.
We get the same result, but I think mine doesn't add confusion with 'x' floating around.</description>
		<content:encoded><![CDATA[<p>Interesting. We differ in that I don&#8217;t think initializing a counter and doing a for loop like that is at all easier. In general, keeping variables to a minimum seems a best-practice.<br />
We get the same result, but I think mine doesn&#8217;t add confusion with &#8216;x&#8217; floating around.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ymS6cErcoZsxKB_8NAgPvevKhCI/0/da"><img src="http://feedads.g.doubleclick.net/~a/ymS6cErcoZsxKB_8NAgPvevKhCI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ymS6cErcoZsxKB_8NAgPvevKhCI/1/da"><img src="http://feedads.g.doubleclick.net/~a/ymS6cErcoZsxKB_8NAgPvevKhCI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/Rj5ih3BNVes" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2012/02/02/workflow-ischanged-translated-to-apex-trigger#comment-993</feedburner:origLink></item>
	<item>
		<title>Comment on Workflow ISCHANGED() translated to Apex trigger by E.J. Wilburn</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/VuOsaua_KG8/workflow-ischanged-translated-to-apex-trigger</link>
		<dc:creator>E.J. Wilburn</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1487#comment-992</guid>
		<description>Trigger.New and Trigger.Old are in the same order, you can do this a little faster and easier like this:

trigger InterviewUpdates on Interview__c (after update, before update) {
    if(Trigger.IsBefore){
		for ( Integer x = 0; x &lt; Trigger.New.size(); x++ )
			if ( Trigger.New[x].Date_and_Time__c != Trigger.Old[x].Date_and_Time__c ) {
                // Send email to applicant, passing Interview, DateTime, and Contact
                // (which we found via a query coded outside the loop to avoid governor limits)
			}
        }
    }
}</description>
		<content:encoded><![CDATA[<p>Trigger.New and Trigger.Old are in the same order, you can do this a little faster and easier like this:</p>
<p>trigger InterviewUpdates on Interview__c (after update, before update) {<br />
    if(Trigger.IsBefore){<br />
		for ( Integer x = 0; x &lt; Trigger.New.size(); x++ )<br />
			if ( Trigger.New[x].Date_and_Time__c != Trigger.Old[x].Date_and_Time__c ) {<br />
                // Send email to applicant, passing Interview, DateTime, and Contact<br />
                // (which we found via a query coded outside the loop to avoid governor limits)<br />
			}<br />
        }<br />
    }<br />
}</p>

<p><a href="http://feedads.g.doubleclick.net/~a/m5RMU7d12kUnViRzWTXOYUQLBZc/0/da"><img src="http://feedads.g.doubleclick.net/~a/m5RMU7d12kUnViRzWTXOYUQLBZc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/m5RMU7d12kUnViRzWTXOYUQLBZc/1/da"><img src="http://feedads.g.doubleclick.net/~a/m5RMU7d12kUnViRzWTXOYUQLBZc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/VuOsaua_KG8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2012/02/02/workflow-ischanged-translated-to-apex-trigger#comment-992</feedburner:origLink></item>
	<item>
		<title>Comment on I Found a Bug – And Salesforce Support Was Great by Becka</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/U8au2Urlkys/i-found-a-bug-and-salesforce-support-was-great</link>
		<dc:creator>Becka</dc:creator>
		<pubDate>Fri, 27 Jan 2012 19:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1069#comment-989</guid>
		<description>So I remember finding a bug back in 2007 &amp; had a very similar experience. Super helpful folks that kept me in the loop the whole time.

I agree with Jenna - many people are too slow to offer praise.</description>
		<content:encoded><![CDATA[<p>So I remember finding a bug back in 2007 &amp; had a very similar experience. Super helpful folks that kept me in the loop the whole time.</p>
<p>I agree with Jenna &#8211; many people are too slow to offer praise.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/DPgmDa5gU_kH3DddeyJasH41BBI/0/da"><img src="http://feedads.g.doubleclick.net/~a/DPgmDa5gU_kH3DddeyJasH41BBI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DPgmDa5gU_kH3DddeyJasH41BBI/1/da"><img src="http://feedads.g.doubleclick.net/~a/DPgmDa5gU_kH3DddeyJasH41BBI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/U8au2Urlkys" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2010/06/10/i-found-a-bug-and-salesforce-support-was-great#comment-989</feedburner:origLink></item>
	<item>
		<title>Comment on Convert between Business and Person Accounts (B2B – B2C) by Mary</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/CuZJvw_aY2k/convert-between-business-and-person-accounts-b2b-b2c</link>
		<dc:creator>Mary</dc:creator>
		<pubDate>Tue, 20 Dec 2011 20:57:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=169#comment-984</guid>
		<description>That was insanely easy and helpful!  Thank you so much!</description>
		<content:encoded><![CDATA[<p>That was insanely easy and helpful!  Thank you so much!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/fDLgkxRs7m41CVzm312LOVeJraY/0/da"><img src="http://feedads.g.doubleclick.net/~a/fDLgkxRs7m41CVzm312LOVeJraY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fDLgkxRs7m41CVzm312LOVeJraY/1/da"><img src="http://feedads.g.doubleclick.net/~a/fDLgkxRs7m41CVzm312LOVeJraY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/CuZJvw_aY2k" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2008/08/19/convert-between-business-and-person-accounts-b2b-b2c#comment-984</feedburner:origLink></item>
	<item>
		<title>Comment on System Replacement For isTest Apex Method by Venkat Polisetti</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/bTf7UFksWzM/system-replacement-for-istest-apex-method</link>
		<dc:creator>Venkat Polisetti</dc:creator>
		<pubDate>Sun, 13 Nov 2011 22:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1202#comment-976</guid>
		<description>David,

Excellent. I have set up a salesforce site in 2008 for our webinar registrations and I had to do exactly what you showed above with a temp variable that tracks if you are testing your code or running in real time. 

Recently, I was making some changes to that old code and was thinking about this and I was sure, salesforce would have fixed this annoyance with a method call and exactly they did. My googling sent me to your site and glad you talked about it.

Thanks,
Venkat Polisetti</description>
		<content:encoded><![CDATA[<p>David,</p>
<p>Excellent. I have set up a salesforce site in 2008 for our webinar registrations and I had to do exactly what you showed above with a temp variable that tracks if you are testing your code or running in real time. </p>
<p>Recently, I was making some changes to that old code and was thinking about this and I was sure, salesforce would have fixed this annoyance with a method call and exactly they did. My googling sent me to your site and glad you talked about it.</p>
<p>Thanks,<br />
Venkat Polisetti</p>

<p><a href="http://feedads.g.doubleclick.net/~a/KmJ46rR68IafPk3zem_LUNyQPc0/0/da"><img src="http://feedads.g.doubleclick.net/~a/KmJ46rR68IafPk3zem_LUNyQPc0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KmJ46rR68IafPk3zem_LUNyQPc0/1/da"><img src="http://feedads.g.doubleclick.net/~a/KmJ46rR68IafPk3zem_LUNyQPc0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/bTf7UFksWzM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/02/23/system-replacement-for-istest-apex-method#comment-976</feedburner:origLink></item>
	<item>
		<title>Comment on Visualforce Inline Editing – I’m In Love by Andrew Stegmaier</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/ogn16Qlax5A/vf-inlineediting-love</link>
		<dc:creator>Andrew Stegmaier</dc:creator>
		<pubDate>Wed, 21 Sep 2011 17:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1240#comment-974</guid>
		<description>Another question:

What would the correct javaScript code for the resetInlineEdit() function look like?</description>
		<content:encoded><![CDATA[<p>Another question:</p>
<p>What would the correct javaScript code for the resetInlineEdit() function look like?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/VomrZKM0wBsGPI62bYoguQfK8G0/0/da"><img src="http://feedads.g.doubleclick.net/~a/VomrZKM0wBsGPI62bYoguQfK8G0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VomrZKM0wBsGPI62bYoguQfK8G0/1/da"><img src="http://feedads.g.doubleclick.net/~a/VomrZKM0wBsGPI62bYoguQfK8G0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/ogn16Qlax5A" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/02/28/vf-inlineediting-love#comment-974</feedburner:origLink></item>
	<item>
		<title>Comment on Visualforce Inline Editing – I’m In Love by Andrew Stegmaier</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/-tqNVwcrX38/vf-inlineediting-love</link>
		<dc:creator>Andrew Stegmaier</dc:creator>
		<pubDate>Wed, 21 Sep 2011 16:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1240#comment-972</guid>
		<description>Answered my own question. Here's the link

http://boards.developerforce.com/t5/Visualforce-Development/Hide-buttons-only-used-for-Inline-Editing/td-p/243831</description>
		<content:encoded><![CDATA[<p>Answered my own question. Here&#8217;s the link</p>
<p><a href="http://boards.developerforce.com/t5/Visualforce-Development/Hide-buttons-only-used-for-Inline-Editing/td-p/243831" rel="nofollow">http://boards.developerforce.com/t5/Visualforce-Development/Hide-buttons-only-used-for-Inline-Editing/td-p/243831</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/1alBJGsIQKyh3u6Qpx7PLkISCAg/0/da"><img src="http://feedads.g.doubleclick.net/~a/1alBJGsIQKyh3u6Qpx7PLkISCAg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1alBJGsIQKyh3u6Qpx7PLkISCAg/1/da"><img src="http://feedads.g.doubleclick.net/~a/1alBJGsIQKyh3u6Qpx7PLkISCAg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/-tqNVwcrX38" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/02/28/vf-inlineediting-love#comment-972</feedburner:origLink></item>
	<item>
		<title>Comment on Visualforce Inline Editing – I’m In Love by Andrew Stegmaier</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/8_Mal26zsDQ/vf-inlineediting-love</link>
		<dc:creator>Andrew Stegmaier</dc:creator>
		<pubDate>Wed, 21 Sep 2011 16:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1240#comment-971</guid>
		<description>You wrote: "Here’s my next step: Find a way to hide the Cancel button on pageload, but show it when any field is inlineEdited. Javascript gurus have a solution?"

Did you ever find a solution to this? I'm trying to do the exact same thing.</description>
		<content:encoded><![CDATA[<p>You wrote: &#8220;Here’s my next step: Find a way to hide the Cancel button on pageload, but show it when any field is inlineEdited. Javascript gurus have a solution?&#8221;</p>
<p>Did you ever find a solution to this? I&#8217;m trying to do the exact same thing.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/7PMZ-bjutG2edPDfJAP6_z7AQ-8/0/da"><img src="http://feedads.g.doubleclick.net/~a/7PMZ-bjutG2edPDfJAP6_z7AQ-8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7PMZ-bjutG2edPDfJAP6_z7AQ-8/1/da"><img src="http://feedads.g.doubleclick.net/~a/7PMZ-bjutG2edPDfJAP6_z7AQ-8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/8_Mal26zsDQ" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/02/28/vf-inlineediting-love#comment-971</feedburner:origLink></item>
	<item>
		<title>Comment on Visualforce Inline Editing – I’m In Love by Making the Common Ground Contact Page (or any page) Less Intimidating with Clicks and a Little Code « Non-Profit Technology and the Force.com Platform</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/qCIxi2RUw9U/vf-inlineediting-love</link>
		<dc:creator>Making the Common Ground Contact Page (or any page) Less Intimidating with Clicks and a Little Code « Non-Profit Technology and the Force.com Platform</dc:creator>
		<pubDate>Wed, 07 Sep 2011 15:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1240#comment-965</guid>
		<description>[...] some more that can and needs to be done (a tip of the hat to @dschach in this post that the Cancel button doesn’t really cancel and reset your values, it just exits you out of [...]</description>
		<content:encoded><![CDATA[<p>[...] some more that can and needs to be done (a tip of the hat to @dschach in this post that the Cancel button doesn&#8217;t really cancel and reset your values, it just exits you out of [...]</p>

<p><a href="http://feedads.g.doubleclick.net/~a/blCc9TqtoyE-hkS2_jAtEMeUhrQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/blCc9TqtoyE-hkS2_jAtEMeUhrQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/blCc9TqtoyE-hkS2_jAtEMeUhrQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/blCc9TqtoyE-hkS2_jAtEMeUhrQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/qCIxi2RUw9U" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/02/28/vf-inlineediting-love#comment-965</feedburner:origLink></item>
	<item>
		<title>Comment on Best Practice: Multiple Chatter Posts of the Same File by Force Feed | Force Architects: Delivered Innovation Blog</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/MJNaEZkhuIw/multiple-chatter-posts-file</link>
		<dc:creator>Force Feed | Force Architects: Delivered Innovation Blog</dc:creator>
		<pubDate>Mon, 15 Aug 2011 15:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1435#comment-955</guid>
		<description>[...] Best Practice: Multiple Chatter Posts of the Same File @dschach Duplicated records are annoying and a waste of time. Instead, upload it once and reference it in subsequent feed posts. [...]</description>
		<content:encoded><![CDATA[<p>[...] Best Practice: Multiple Chatter Posts of the Same File @dschach Duplicated records are annoying and a waste of time. Instead, upload it once and reference it in subsequent feed posts. [...]</p>

<p><a href="http://feedads.g.doubleclick.net/~a/52siJdQRQE1LfDvUZUrkFAcrmSY/0/da"><img src="http://feedads.g.doubleclick.net/~a/52siJdQRQE1LfDvUZUrkFAcrmSY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/52siJdQRQE1LfDvUZUrkFAcrmSY/1/da"><img src="http://feedads.g.doubleclick.net/~a/52siJdQRQE1LfDvUZUrkFAcrmSY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/MJNaEZkhuIw" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/08/11/multiple-chatter-posts-file#comment-955</feedburner:origLink></item>
	<item>
		<title>Comment on Convert between Business and Person Accounts (B2B – B2C) by Dmitry</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/YJ7pK0_4m3g/convert-between-business-and-person-accounts-b2b-b2c</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Thu, 14 Jul 2011 08:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=169#comment-626</guid>
		<description>Great idea!</description>
		<content:encoded><![CDATA[<p>Great idea!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ETu7vZGD09-5HeR0f0kMffvA0fc/0/da"><img src="http://feedads.g.doubleclick.net/~a/ETu7vZGD09-5HeR0f0kMffvA0fc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ETu7vZGD09-5HeR0f0kMffvA0fc/1/da"><img src="http://feedads.g.doubleclick.net/~a/ETu7vZGD09-5HeR0f0kMffvA0fc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/YJ7pK0_4m3g" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2008/08/19/convert-between-business-and-person-accounts-b2b-b2c#comment-626</feedburner:origLink></item>
	<item>
		<title>Comment on Next Birthday Formula by David Schach</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/NbxLg4nerhI/next-birthday-formula</link>
		<dc:creator>David Schach</dc:creator>
		<pubDate>Mon, 11 Jul 2011 18:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1429#comment-575</guid>
		<description>Thanks for sharing that!  I took a look, and it's great for automatically emailing birthdays and anniversaries; it doesn't, however, provide visibility into upcoming birthdays.  A great complement to this formula, though.  And a great example of using Batch Apex with email templates.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing that!  I took a look, and it&#8217;s great for automatically emailing birthdays and anniversaries; it doesn&#8217;t, however, provide visibility into upcoming birthdays.  A great complement to this formula, though.  And a great example of using Batch Apex with email templates.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/1b0GbFBkWw9q-u6YVfbCErkvT2I/0/da"><img src="http://feedads.g.doubleclick.net/~a/1b0GbFBkWw9q-u6YVfbCErkvT2I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1b0GbFBkWw9q-u6YVfbCErkvT2I/1/da"><img src="http://feedads.g.doubleclick.net/~a/1b0GbFBkWw9q-u6YVfbCErkvT2I/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/NbxLg4nerhI" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/07/06/next-birthday-formula#comment-575</feedburner:origLink></item>
	<item>
		<title>Comment on Next Birthday Formula by Tal Frankfurt</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/KYgeAK9Hbcc/next-birthday-formula</link>
		<dc:creator>Tal Frankfurt</dc:creator>
		<pubDate>Mon, 11 Jul 2011 00:19:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1429#comment-549</guid>
		<description>Great formula! Did you look at the Birthday eMailer app on the AppExchnage (by force.com labs)? 
http://appexchange.salesforce.com/listingDetail?listingId=a0N30000003I77zEAC</description>
		<content:encoded><![CDATA[<p>Great formula! Did you look at the Birthday eMailer app on the AppExchnage (by force.com labs)?<br />
<a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N30000003I77zEAC" rel="nofollow">http://appexchange.salesforce.com/listingDetail?listingId=a0N30000003I77zEAC</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/E0T98NJTBBRHxqMoLllPGBHd8Q8/0/da"><img src="http://feedads.g.doubleclick.net/~a/E0T98NJTBBRHxqMoLllPGBHd8Q8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/E0T98NJTBBRHxqMoLllPGBHd8Q8/1/da"><img src="http://feedads.g.doubleclick.net/~a/E0T98NJTBBRHxqMoLllPGBHd8Q8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/KYgeAK9Hbcc" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/07/06/next-birthday-formula#comment-549</feedburner:origLink></item>
	<item>
		<title>Comment on Next Birthday Formula by Andy Ognenoff</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/HEfIf59a6o4/next-birthday-formula</link>
		<dc:creator>Andy Ognenoff</dc:creator>
		<pubDate>Thu, 07 Jul 2011 03:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1429#comment-402</guid>
		<description>Nice formula David! Saved for future reference and I would think could be used for finding next occurrence of any date just by swapping out the Birthdate field.

Have you tested what happens with Feb 29th? 

For my own use, I also reformatted a bit.  Commas at the beginning of lines in if statements make it easy to select an entire condition to add or remove for testing. Posting it back here will probably mangle it though so let me know if you want to see how how I reformatted it.</description>
		<content:encoded><![CDATA[<p>Nice formula David! Saved for future reference and I would think could be used for finding next occurrence of any date just by swapping out the Birthdate field.</p>
<p>Have you tested what happens with Feb 29th? </p>
<p>For my own use, I also reformatted a bit.  Commas at the beginning of lines in if statements make it easy to select an entire condition to add or remove for testing. Posting it back here will probably mangle it though so let me know if you want to see how how I reformatted it.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/nEnlEZM2QwtRpYxvLSihBrSIwzY/0/da"><img src="http://feedads.g.doubleclick.net/~a/nEnlEZM2QwtRpYxvLSihBrSIwzY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nEnlEZM2QwtRpYxvLSihBrSIwzY/1/da"><img src="http://feedads.g.doubleclick.net/~a/nEnlEZM2QwtRpYxvLSihBrSIwzY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/HEfIf59a6o4" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/07/06/next-birthday-formula#comment-402</feedburner:origLink></item>
	<item>
		<title>Comment on Salesforce Wallpaper for iPad (by request) by Ryan</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/pvU3SWFnUIE/salesforce-ipad-wallpaper</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 14 Jun 2011 22:49:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1140#comment-195</guid>
		<description>This looks great, thanks!</description>
		<content:encoded><![CDATA[<p>This looks great, thanks!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/6pp7cJPx-CHIDrXJXp1nYiSWi3A/0/da"><img src="http://feedads.g.doubleclick.net/~a/6pp7cJPx-CHIDrXJXp1nYiSWi3A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6pp7cJPx-CHIDrXJXp1nYiSWi3A/1/da"><img src="http://feedads.g.doubleclick.net/~a/6pp7cJPx-CHIDrXJXp1nYiSWi3A/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/pvU3SWFnUIE" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2010/08/13/salesforce-ipad-wallpaper#comment-195</feedburner:origLink></item>
	<item>
		<title>Comment on Project: Change Owner Button in Visualforce by David Schach</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/wmDsWm-HfNU/project-change-owner-button-in-visualforce</link>
		<dc:creator>David Schach</dc:creator>
		<pubDate>Sat, 11 Jun 2011 16:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=244#comment-132</guid>
		<description>Make a button that opens a web page: //a&amp;retURL=
That's it!  Enjoy.</description>
		<content:encoded><![CDATA[<p>Make a button that opens a web page: //a&amp;retURL=<br />
That&#8217;s it!  Enjoy.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/RiXlQm2Nkuu8apz9iHHIFccAlAA/0/da"><img src="http://feedads.g.doubleclick.net/~a/RiXlQm2Nkuu8apz9iHHIFccAlAA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RiXlQm2Nkuu8apz9iHHIFccAlAA/1/da"><img src="http://feedads.g.doubleclick.net/~a/RiXlQm2Nkuu8apz9iHHIFccAlAA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/wmDsWm-HfNU" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2008/11/13/project-change-owner-button-in-visualforce#comment-132</feedburner:origLink></item>
	<item>
		<title>Comment on Project: Change Owner Button in Visualforce by Depton</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/TtgmW0XY6Bs/project-change-owner-button-in-visualforce</link>
		<dc:creator>Depton</dc:creator>
		<pubDate>Fri, 10 Jun 2011 18:27:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=244#comment-131</guid>
		<description>Hi,

I would like to create a change owner button (to shown besides the "edit" or " delete" buttons) in a custom object
The ownership is based on a look up field:(users)

Assigned to

Can you please provide some tips for it!!

Thank you</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I would like to create a change owner button (to shown besides the &#8220;edit&#8221; or &#8221; delete&#8221; buttons) in a custom object<br />
The ownership is based on a look up field:(users)</p>
<p>Assigned to</p>
<p>Can you please provide some tips for it!!</p>
<p>Thank you</p>

<p><a href="http://feedads.g.doubleclick.net/~a/VB5f9b4LHsPeFANfXpPThH9InZM/0/da"><img src="http://feedads.g.doubleclick.net/~a/VB5f9b4LHsPeFANfXpPThH9InZM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VB5f9b4LHsPeFANfXpPThH9InZM/1/da"><img src="http://feedads.g.doubleclick.net/~a/VB5f9b4LHsPeFANfXpPThH9InZM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/TtgmW0XY6Bs" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2008/11/13/project-change-owner-button-in-visualforce#comment-131</feedburner:origLink></item>
	<item>
		<title>Comment on Content Latest Version Flag by LNIngram</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/G9xR58y4oa8/content-latest-version-flag</link>
		<dc:creator>LNIngram</dc:creator>
		<pubDate>Fri, 03 Jun 2011 19:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=1359#comment-202</guid>
		<description>... this should really be the default option!</description>
		<content:encoded><![CDATA[<p>&#8230; this should really be the default option!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/CWCnE1fRO0DU5z6d66hZGE98e2k/0/da"><img src="http://feedads.g.doubleclick.net/~a/CWCnE1fRO0DU5z6d66hZGE98e2k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CWCnE1fRO0DU5z6d66hZGE98e2k/1/da"><img src="http://feedads.g.doubleclick.net/~a/CWCnE1fRO0DU5z6d66hZGE98e2k/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/G9xR58y4oa8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2011/05/04/content-latest-version-flag#comment-202</feedburner:origLink></item>
	<item>
		<title>Comment on New Opportunity Page Layout – With Highlights Panel! by David Schach</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/SjuvPTrI-cs/new-opportunity-page-layout-with-highlights-panel</link>
		<dc:creator>David Schach</dc:creator>
		<pubDate>Thu, 02 Jun 2011 19:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=963#comment-179</guid>
		<description>Andy-
You're not too late.  This was rolled into the Service Console and is shown at the top of page layouts when viewed by Service Console users.
Great question.</description>
		<content:encoded><![CDATA[<p>Andy-<br />
You&#8217;re not too late.  This was rolled into the Service Console and is shown at the top of page layouts when viewed by Service Console users.<br />
Great question.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/SX8k0BeHf3KQF69FPP4-inIoi2k/0/da"><img src="http://feedads.g.doubleclick.net/~a/SX8k0BeHf3KQF69FPP4-inIoi2k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SX8k0BeHf3KQF69FPP4-inIoi2k/1/da"><img src="http://feedads.g.doubleclick.net/~a/SX8k0BeHf3KQF69FPP4-inIoi2k/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/SjuvPTrI-cs" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2010/02/18/new-opportunity-page-layout-with-highlights-panel#comment-179</feedburner:origLink></item>
	<item>
		<title>Comment on New Opportunity Page Layout – With Highlights Panel! by Andy</title>
		<link>http://feedproxy.google.com/~r/x2od_comments/~3/d6UfmxFdV-U/new-opportunity-page-layout-with-highlights-panel</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 02 Jun 2011 15:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.x2od.com/?p=963#comment-178</guid>
		<description>Late to the party, here, but whatever happened to this new Opportunity page layout? I've not heard anything about it in the release notes. Did the pilot get quietly finished?

With thanks,</description>
		<content:encoded><![CDATA[<p>Late to the party, here, but whatever happened to this new Opportunity page layout? I&#8217;ve not heard anything about it in the release notes. Did the pilot get quietly finished?</p>
<p>With thanks,</p>

<p><a href="http://feedads.g.doubleclick.net/~a/zVhkx3UL5oUuirKmxp8ZWIRNs24/0/da"><img src="http://feedads.g.doubleclick.net/~a/zVhkx3UL5oUuirKmxp8ZWIRNs24/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zVhkx3UL5oUuirKmxp8ZWIRNs24/1/da"><img src="http://feedads.g.doubleclick.net/~a/zVhkx3UL5oUuirKmxp8ZWIRNs24/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/x2od_comments/~4/d6UfmxFdV-U" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://www.x2od.com/2010/02/18/new-opportunity-page-layout-with-highlights-panel#comment-178</feedburner:origLink></item>
</channel>
</rss><!-- Dynamic page generated in 1.430 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-02 08:52:16 -->

