<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-37820012</id><updated>2012-01-25T09:54:36.096Z</updated><category term='MOSS 2007'/><category term='XSL'/><category term='CSS'/><category term='Javascript'/><category term='Project Server 2007'/><category term='Web Services'/><category term='UDL'/><category term='SharePoint Search'/><category term='HTML Email'/><category term='Pub Pics'/><category term='Connection Strings'/><category term='SQL 2005'/><category term='My Site'/><category term='Navigation'/><category term='Workflow'/><category term='STSADM'/><category term='Security'/><category term='SharePoint 2010'/><category term='Data Connections'/><category term='Content Query Web Part'/><category term='Anonymous Access'/><category term='Visual Studio 2010'/><category term='Art Forms'/><category term='WSS 3.0'/><category term='Application Events'/><category term='Performance Point Server'/><category term='Themes'/><category term='Ping'/><category term='Central Administration'/><category term='Features'/><category term='SQL 2000'/><category term='Travel'/><category term='Content Deployment'/><category term='V-PC'/><category term='Dreamweaver 8'/><category term='SharePoint Designer'/><category term='Outlook 2007'/><category term='Web Parts'/><category term='Wikis'/><category term='Branding'/><category term='Master Pages'/><category term='Shared Service Providers'/><category term='Forms'/><category term='MOSS SP1'/><category term='Universal Data Link'/><category term='Web Part Pages'/><category term='Lists'/><category term='InfoPath'/><title type='text'>Hannah Scott's Blog</title><subtitle type='html'>Some stuff I have written &amp;amp; collected about MOSS 2010 / 2007 and all things related as well as the odd picture from the pub.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default?start-index=101&amp;max-results=100'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>102</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-37820012.post-4815137252947351053</id><published>2011-09-14T15:40:00.000Z</published><updated>2011-09-14T15:40:15.718Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='CSS'/><title type='text'>IE Conditional Stylesheets and Hacks</title><content type='html'>Thanks &lt;a href="http://css-tricks.com/132-how-to-create-an-ie-only-stylesheet/"&gt;Chris Coyer&lt;/a&gt; for this useful list of CSS examples to target different versions of IE referencing Conditional Stylesheets and Hacks:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;The Code&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This would go in your &amp;lt;head&amp;gt; with all the other regular CSS &amp;lt;link&amp;gt;ed CSS files. The opening and closing tags should be familiar, that's just regular ol' HTML comments. Then between the brackets, "IF" and "IE" should be fairly obvious. The syntax to note is "!" stand for "not", so !IE means "not IE". gt means "greater than", gte means "greater than or equal", lt means "less than", lte means "less than or equal."&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target ALL VERSIONS of IE&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if IE]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="all-ie-only.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target everything EXCEPT IE&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if !IE]&amp;gt;&amp;lt;!--&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="not-ie.css" /&amp;gt;&lt;br /&gt;&amp;lt;!--&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 7 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie7.css"&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 6 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if IE 6]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 5 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if IE 5]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie5.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 5.5 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if IE 5.5000]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie55.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 6 and LOWER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lt IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lte IE 6]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 7 and LOWER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lt IE 8]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie7-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lte IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie7-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 8 and LOWER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lt IE 9]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie8-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lte IE 8]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie8-and-down.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 6 and HIGHER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gt IE 5.5]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gte IE 6]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 7 and HIGHER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gt IE 6]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie7-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gte IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie7-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Target IE 8 and HIGHER&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gt IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie8-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gte IE 8]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie8-and-up.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Universal IE 6 CSS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Dealing with IE 6 and below is always an extra-special challenge. These days people are dropping support for it right and left, including major businesses, major web apps, and even governments. There is a better solution than just letting the site go to hell, and that is to server IE 6 and below a special stripped-down stylesheet, and then serve IE 7 and above (and all other browsers) the regular CSS. This is been coined the universal IE 6 CSS.&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if !IE 6]&amp;gt;&amp;lt;!--&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" media="screen, projection" href="REGULAR-STYLESHEET.css" /&amp;gt;&lt;br /&gt;&amp;lt;!--&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if gte IE 7]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" media="screen, projection" href="REGULAR-STYLESHEET.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[if lte IE 6]&amp;gt;&lt;br /&gt;&amp;lt;link rel="stylesheet" type="text/css" media="screen, projection" href="http://universal-ie6-css.googlecode.com/files/ie6.0.3.css" /&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Hacks&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If you must...&lt;br /&gt;&lt;b&gt;IE-6 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;* html #div {&lt;br /&gt;height: 300px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IE-7 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;*+html #div {&lt;br /&gt;height: 300px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IE-8 ONLY&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;#div {&lt;br /&gt;height: 300px\0/;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IE-7 &amp;amp; IE-8&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;#div {&lt;br /&gt;height: 300px\9;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;NON IE-7 ONLY:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;#div {&lt;br /&gt;_height: 300px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Hide from IE 6 and LOWER:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;#div {&lt;br /&gt;height/**/: 300px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;html &amp;gt; body #div {&lt;br /&gt;height: 300px;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-4815137252947351053?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/4815137252947351053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/09/ie-conditional-stylesheets-and-hacks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4815137252947351053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4815137252947351053'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/09/ie-conditional-stylesheets-and-hacks.html' title='IE Conditional Stylesheets and Hacks'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-4885597748419623652</id><published>2011-09-14T15:06:00.001Z</published><updated>2011-09-14T15:09:15.404Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Branding'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='CSS'/><title type='text'>List 'Boxed' Style with One Column Layout</title><content type='html'>Thanks &lt;a href="http://blog.pathtosharepoint.com/2010/03/17/update-boxed-view-with-one-column-only/"&gt;Christophe &amp;amp; Larry&lt;/a&gt; for this useful bit of styling to modify the SharePoint 2010 'Boxed' list style to display items in a single column layout (rather than the default 2 cols):&lt;br /&gt;&lt;br /&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;var boxedview = document.getElementById("WebPartWPQ1").innerHTML;&lt;br /&gt;boxedview = boxedview.replace(/&amp;nbsp;&amp;lt;\/td&amp;gt;/gi,"&amp;lt;\/tr&amp;gt;&amp;nbsp;&amp;lt;\/td&amp;gt;&amp;lt;\/tr&amp;gt;");&lt;br /&gt;boxedview = boxedview.replace(/&amp;nbsp;&amp;lt;\/td&amp;gt;/gi,"&amp;lt;\/tr&amp;gt;&amp;nbsp;&amp;lt;\/td&amp;gt;&amp;lt;\/tr&amp;gt;");&lt;br /&gt;boxedview = boxedview.replace(/&amp;nbsp;&amp;lt;\/td&amp;gt;/gi,"&amp;lt;\/tr&amp;gt;&amp;nbsp;&amp;lt;\/td&amp;gt;&amp;lt;\/tr&amp;gt;");&lt;br /&gt;&lt;br /&gt;document.getElementById("WebPartWPQ1").innerHTML = boxedview;&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;Update the webpart ID (WebPartWPQ1) to match that of your list web part.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-4885597748419623652?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/4885597748419623652/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/09/list-boxed-style-with-one-column-layout.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4885597748419623652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4885597748419623652'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/09/list-boxed-style-with-one-column-layout.html' title='List &apos;Boxed&apos; Style with One Column Layout'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-9012538727057946482</id><published>2011-07-26T13:58:00.000Z</published><updated>2011-07-26T13:58:28.225Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>XSL Date using ddwrt Namespace</title><content type='html'>The following comes from: &lt;a href="http://msdn.microsoft.com/en-us/library/dd583143(v=office.11).aspx"&gt;http://msdn.microsoft.com/en-us/library/dd583143(v=office.11).aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;XSL Date using ddwrt Namespace...&lt;/b&gt; NOTE: Ensure the xsl stylesheet includes a reference to ddwrt ...&amp;nbsp;Eg:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&amp;lt;xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" &lt;/span&gt;&lt;strong&gt;xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt; xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal" xmlns:o="urn:schemas-microsoft-com:office:office"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;Functions:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;public string FormatDate(string szDate, long lcid, long formatFlag);&lt;br /&gt;&lt;strong&gt;&amp;lt;xsl:value-of select="ddwrt:FormatDateTime(ddwrt:TodayIso(),2057,'dddd MMMM dd yyyy')" /&amp;gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;public string TodayIso(); &lt;br /&gt;&lt;strong&gt;&amp;lt;xsl:value-of select="ddwrt:TodayIso()"/&amp;gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;public string Today(); &lt;br /&gt;&lt;strong&gt;&amp;lt;xsl:value-of select="ddwrt:Today()"/&amp;gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt; &lt;br /&gt;&lt;ul&gt;&lt;li&gt;Date only as M/d/yyyy. Example: "08/17/2000".&lt;/li&gt;&lt;li&gt;Date only as dddd, MM dd, yyyy. Example: "Thursday, August 17, 2000".&lt;/li&gt;&lt;li&gt;Time only as h:mm. Example: "16:32".&lt;/li&gt;&lt;li&gt;DateTime as M/d/yyyy h:mm. Example: "08/17/2000 16:32".&lt;/li&gt;&lt;li&gt;DateTime as dddd, MM dd, yyyy h:mm. Example: "Thursday, August 17, 2000 16:32".&lt;/li&gt;&lt;li&gt;Time only as h:mm:ss. Example: "16:32:32".&lt;/li&gt;&lt;li&gt;DateTime as M/d/yyyy h:mm:ss. Example: "08/17/2000 16:32:32".&lt;/li&gt;&lt;li&gt;DateTime as dddd, MMMM dd, yyyy h:mm:ss. Example: "Thursday, August 17, 2000 16:32:32".&lt;/li&gt;&lt;ul&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-9012538727057946482?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/9012538727057946482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/07/xsl-date-using-ddwrt-namespace.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/9012538727057946482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/9012538727057946482'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/07/xsl-date-using-ddwrt-namespace.html' title='XSL Date using ddwrt Namespace'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-7877576935843532578</id><published>2011-07-06T16:07:00.001Z</published><updated>2011-07-06T16:07:59.769Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>XLV Web Parts</title><content type='html'>To display an XLV on another site update&amp;nbsp;the Title, Description, ListId and&amp;nbsp;WebId values in&amp;nbsp;this code; save as a .webpart; upload the file to a web part page (&lt;a href="http://www.glynblogs.com/2011/07/creating-an-xslt-list-view-web-part-from-a-different-site.html"&gt;more info on Glyn's blog&lt;/a&gt;):&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;lt;webParts&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&amp;lt;webPart xmlns="http://schemas.microsoft.com/WebPart/v3"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&amp;lt;metaData&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;&amp;lt;type name="Microsoft.SharePoint.WebPartPages.XsltListViewWebPart, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;&amp;lt;importErrorMessage&amp;gt;Cannot import this Web Part.&amp;lt;/importErrorMessage&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&amp;lt;/metaData&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&amp;lt;data&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;&amp;lt;properties&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="Title" type="string"&amp;gt;My List&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="Description" type="string"&amp;gt;A view of My list from the root of the site&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="ListName" type="string"&amp;gt;8480D028-A2ED-474B-8259-BEE394EE4C53&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="ListId" type="System.Guid, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&amp;gt;8480D028-A2ED-474B-8259-BEE394EE4C53&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="WebId" type="System.Guid, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&amp;gt;adea17f7-e661-4ff0-91e9-70f021c60647&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&amp;lt;property name="ExportMode" type="exportmode"&amp;gt;All&amp;lt;/property&amp;gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;    &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;   &lt;/span&gt;&amp;lt;/properties&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;  &lt;/span&gt;&amp;lt;/data&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&amp;lt;/webPart&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;lt;/webParts&amp;gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-7877576935843532578?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/7877576935843532578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/07/xlv-web-parts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7877576935843532578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7877576935843532578'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/07/xlv-web-parts.html' title='XLV Web Parts'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-502893907632639827</id><published>2011-06-01T18:00:00.000Z</published><updated>2011-06-01T18:00:22.311Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><title type='text'>Return all values in XSL</title><content type='html'>&amp;lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" &amp;gt;&lt;br /&gt;&amp;lt;xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" /&amp;gt;&lt;br /&gt;&amp;lt;xsl:template match="/"&amp;gt;&lt;br /&gt;&amp;lt;xmp&amp;gt;&amp;lt;xsl:copy-of select="*"/&amp;gt;&amp;lt;/xmp&amp;gt;&lt;br /&gt;&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;&amp;lt;/xsl:stylesheet&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-502893907632639827?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/502893907632639827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/06/return-all-values-in-xsl.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/502893907632639827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/502893907632639827'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/06/return-all-values-in-xsl.html' title='Return all values in XSL'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-5817721222750874494</id><published>2011-06-01T17:55:00.001Z</published><updated>2011-06-02T09:29:36.203Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Search'/><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>Contextual Search Results</title><content type='html'>I wanted to configure a contextual search to bring back results from a particular list only and display the results on the same web part page. I also wanted to be able to open the results items in a modal dialogue box (new for SharePoint 2010). On my page I have:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;a Search Box web part configured as follows:&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Scopes dropdown:&amp;nbsp;Do not show dropdown and default to target results page&amp;nbsp;&lt;/li&gt;&lt;li&gt;&lt;label for="ctl00_MSOTlPn_EditorZone_Edit0g_7920a0fa_b033_420f_b1ab_7c36062bcf26_ctl15_SearchResultPageURL_EDITOR" title="Web address to an alternate search results page for displaying results for searches from this Web Part."&gt;Target  search results page URL:&amp;nbsp;/site/Pages/default.aspx&lt;/label&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;a Search Core Results web part configured as follows:&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Results Query options /&amp;nbsp;Append Text To Query -&amp;nbsp;Site:http://site/Lists/ListName contentclass:STS_ListItem.&lt;/li&gt;&lt;li&gt;Edit the Display Properties XSL by searching for this line:&lt;br /&gt;&lt;br /&gt;&amp;lt;xsl:attribute name="href"&amp;gt; &amp;lt;xsl:value-of &amp;nbsp;select="$url"&amp;gt; &amp;lt;/xsl:value-of&amp;gt;&amp;lt;/xsl:attribute&amp;gt;&lt;br /&gt;&lt;br /&gt;and replacing it with this:&lt;br /&gt;&lt;br /&gt;&amp;lt;xsl:attribute name="href"&amp;gt; javascript:OpenDialog('&amp;lt;xsl:value-of select="$url"&amp;gt;') &amp;lt;/xsl:value-of&amp;gt;&amp;lt;/xsl:attribute&amp;gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;/ul&gt;&lt;/ol&gt;Thanks to &lt;a href="http://www.glynblogs.com/"&gt;Glyn &lt;/a&gt;for pointing me in the right direction again&amp;nbsp;and &lt;a href="http://www.rtsmedia.com/SharePoint/contentclass.aspx"&gt;Rain Tree Studio&lt;/a&gt; for this list of &lt;b&gt;contentclass &lt;/b&gt;values, which can be&amp;nbsp;appended&amp;nbsp;to a search query:&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; case "STS_Web": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Site&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_850": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Page Library&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_850": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Page&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_DocumentLibrary":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Document Library&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_DocumentLibrary": &amp;nbsp; &amp;nbsp; // Document Library Items&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Custom List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Custom List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_Links": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Links List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_Links": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Links List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_Tasks": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Tasks List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_Tasks": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Tasks List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_Events": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Events List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_Events": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Events List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_Announcements": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Announcements List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_Announcements": &amp;nbsp; &amp;nbsp; // Announcements List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  case "STS_List_Contacts": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Contacts List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_Contacts":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Contacts List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_DiscussionBoard": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Discussion List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_DiscussionBoard": &amp;nbsp; // Discussion List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_List_IssueTracking":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Issue Tracking List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case  "STS_ListItem_IssueTracking": &amp;nbsp; &amp;nbsp; &amp;nbsp; // Issue Tracking List Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  case "STS_List_GanttTasks": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Project Tasks List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  case "STS_ListItem_GanttTasks": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Project Tasks List  Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_List_Survey": &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Survey  List&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_ListItem_Survey":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Survey List  Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_List_PictureLibrary":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Picture  Library&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_ListItem_PictureLibrary":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Picture  Library Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_List_WebPageLibrary":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Web Page  Library&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_ListItem_WebPageLibrary":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Web Page  Library Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_List_XMLForm":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Form  Library&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "STS_ListItem_XMLForm":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Form Library  Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-class:SPSSearchQuery":&amp;nbsp;&amp;nbsp;&amp;nbsp; // Search  Query&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-class:SPSListing:News":&amp;nbsp;&amp;nbsp; // News  Listing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-class:SPSPeople":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //  People&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSCategory":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //  Category&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSListing":&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //  Listing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSPersonListing":// Person  Listing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSTextListing":&amp;nbsp; // Text  Listing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSSiteListing":&amp;nbsp; // Site  Listing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "urn:content-classes:SPSSiteRegistry": // Site Registry  Listing&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-5817721222750874494?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/5817721222750874494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/06/contextual-search-results.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5817721222750874494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5817721222750874494'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/06/contextual-search-results.html' title='Contextual Search Results'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-5146881985119218587</id><published>2011-06-01T09:57:00.010Z</published><updated>2011-06-02T09:29:36.204Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Parts'/><title type='text'>Grouping list data in XSLT</title><content type='html'>I used a linked XSL file to override the output of my list web part, grouped by one of my custom columns called 'Classification'.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;To add in an XSL override link to your XSL file via the list web part properties:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-8_66shXeBSA/TeYL-YtClVI/AAAAAAAAAYk/MpsFgxuH4qw/s1600/xslLink.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/-8_66shXeBSA/TeYL-YtClVI/AAAAAAAAAYk/MpsFgxuH4qw/s320/xslLink.gif" width="176" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;XSL (uploaded to a SharePoint Document library):&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;lt;xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal" xmlns:o="urn:schemas-microsoft-com:office:office"&amp;gt;&lt;br /&gt;&amp;lt;xsl:include href="/_layouts/xsl/main.xsl"/&amp;gt;&lt;br /&gt;&amp;lt;xsl:include href="/_layouts/xsl/internal.xsl"/&amp;gt;&lt;br /&gt;&amp;lt;xsl:output method="html" indent="yes" version="4.0"/&amp;gt;&lt;br /&gt;&amp;lt;xsl:template match="/"&amp;gt;&lt;br /&gt;&amp;lt;xsl:call-template name="MyTemplate" /&amp;gt;&lt;br /&gt;&amp;lt;/xsl:template&amp;gt; &lt;br /&gt;&amp;lt;xsl:key name="classificationKey" match="Row" use="@Classification" /&amp;gt;&lt;br /&gt;&amp;lt;xsl:key name="associatedTitle" match="Row" use="@Title" /&amp;gt;&lt;br /&gt;&amp;lt;xsl:template name="MyTemplate"&amp;gt;&lt;br /&gt;&amp;lt;xsl:for-each select="/dsQueryResponse/Rows/Row[generate-id(.)=generate-id(key('classificationKey', @Classification))]"&amp;gt;&lt;br /&gt;&amp;lt;h3&amp;gt;&amp;lt;xsl:value-of select="@Classification" /&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;&amp;lt;xsl:variable name="thisClassification" select="@Classification" /&amp;gt;&lt;br /&gt;&amp;lt;xsl:for-each select="../Row[generate-id()=generate-id(key('associatedTitle', @Title)[@Classification = $thisClassification][1])]"&amp;gt;&lt;br /&gt;&amp;lt;div&amp;gt;&lt;br /&gt;&amp;lt;strong&amp;gt;Title: &amp;lt;/strong&amp;gt;&lt;br /&gt;&amp;lt;xsl:value-of select="@Title" /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;&amp;lt;strong&amp;gt;Description: &amp;lt;/strong&amp;gt;&lt;br /&gt;&amp;lt;xsl:value-of select="@Description" disable-output-escaping="yes" /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;&amp;lt;strong&amp;gt;Link: &amp;lt;/strong&amp;gt;&lt;br /&gt;&amp;lt;a href="{@Link}" title="{@Title}"&amp;gt;&amp;lt;xsl:value-of select="@Link"/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/xsl:for-each&amp;gt;&lt;br /&gt;&amp;lt;/xsl:for-each&amp;gt;&lt;br /&gt;&amp;lt;/xsl:template&amp;gt; &lt;br /&gt;&amp;lt;/xsl:stylesheet&amp;gt;&lt;/span&gt;  &lt;br /&gt;&lt;br /&gt;&lt;b&gt;This is the output:&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;strong&gt;Classification 1&lt;br /&gt;&lt;/strong&gt;  &lt;br /&gt;Title 1&lt;br /&gt;Description 1  &lt;br /&gt;Title 2&lt;br /&gt;Description 2  &lt;br /&gt;Title 3&lt;br /&gt;Description 3  &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Classification 2&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;Title 4&lt;br /&gt;Description 4  &lt;br /&gt;Title 5&lt;br /&gt;Description 5&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-5146881985119218587?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/5146881985119218587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/06/grouping-list-data-in-xslt.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5146881985119218587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5146881985119218587'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/06/grouping-list-data-in-xslt.html' title='Grouping list data in XSLT'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-8_66shXeBSA/TeYL-YtClVI/AAAAAAAAAYk/MpsFgxuH4qw/s72-c/xslLink.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-1313267065169967854</id><published>2011-04-08T12:01:00.001Z</published><updated>2011-06-02T09:29:36.205Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Designer'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Workflow'/><title type='text'>List View Lookup Threshold</title><content type='html'>In my workflow I have multiple 'Collect Data from Users'&amp;nbsp;actions configured. It tested with no problems in my dev environment running with an admin account. However, in a separate test environment running the workflow as a normal user the workflow failed with the following error:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;SP Workflow Error: An error has occurred in &lt;/span&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;YourWorkflow&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;I searched the SP logs and found the following&amp;nbsp;ULS error:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;Some lookup fields were omitted from the query results because the list exceeds the lookup column threshold.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The problem occurred because SP has a threshold on list lookup columns set to a default value of 8.&lt;br /&gt;&lt;br /&gt;There are two possible solutions:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;b&gt;Increase the threshold in Central Administration&lt;br /&gt;&lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;&lt;br /&gt;NOTE: It is recommended NOT to increase the threshold since it will affect performance across your web application.&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;However, if you do want to increase the threshold you can do so in the Resource Throttling settings in Central Administration. Here you can "specify the maximum number of Lookup, Person/Group, or workflow status fields that a database query can involve at one time":&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;ol&gt;&lt;li&gt;Click Manage web applications.&lt;/li&gt;&lt;li&gt;Select the web application you want to update.&lt;/li&gt;&lt;li&gt;Click General Settings | Resource Throttling.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/-_edMhHqXqc8/TZ73O12b-_I/AAAAAAAAAYM/uXJXBBH0Liw/s1600/Screen-shot-2011-04-08-at-12.51.42.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="150" src="http://3.bp.blogspot.com/-_edMhHqXqc8/TZ73O12b-_I/AAAAAAAAAYM/uXJXBBH0Liw/s320/Screen-shot-2011-04-08-at-12.51.42.gif" style="cursor: move;" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Update the List View Lookup Threshold to at least 12.&lt;/li&gt;&lt;li&gt;Click OK.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;&lt;b&gt;Reduce the number of lookup columns in your workflow.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-weight: normal;"&gt;NOTE - lists / libraries already have two lookup columns by default: 'Created by' and 'Modified by' so while the threshold is set to 8 you need to keep your additional columns to a maximum of 6.&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #2a2a2a; font-family: Verdana, Tahoma, Arial, sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 11px; font-weight: normal; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-1313267065169967854?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/1313267065169967854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/04/list-view-lookup-threshold.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1313267065169967854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1313267065169967854'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/04/list-view-lookup-threshold.html' title='List View Lookup Threshold'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-_edMhHqXqc8/TZ73O12b-_I/AAAAAAAAAYM/uXJXBBH0Liw/s72-c/Screen-shot-2011-04-08-at-12.51.42.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-7623751017906196414</id><published>2011-04-07T15:14:00.000Z</published><updated>2011-06-02T09:29:36.206Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Designer'/><category scheme='http://www.blogger.com/atom/ns#' term='Forms'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Workflow'/><title type='text'>Hide and auto-generate 'Title' column in SP Designer workflow</title><content type='html'>I have a custom list content type, which applicants use to apply for jobs. The default 'Title' column is not required as it would make no sense to the applicant. However, I don't want to rename the site column or delete it from the site because it is used in other lists.&lt;br /&gt;&lt;br /&gt;The 'Title' column is inherited by lists and libraries from the 'Item' content type. If you don't require it you can specify it's settings to be hidden so that it does not appear in any forms.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;To Hide the Title Column:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open your custom Content Type Information page and select the 'Title' column.&amp;nbsp;&lt;/li&gt;&lt;li&gt;Set the Column Settings to 'Hidden'.&amp;nbsp;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-WznvOwdWXW4/TZ3M75SiY4I/AAAAAAAAAYI/d0JJxpPYX1M/s1600/Screen-shot-2011-04-07-at-15.37.20.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="165" src="http://3.bp.blogspot.com/-WznvOwdWXW4/TZ3M75SiY4I/AAAAAAAAAYI/d0JJxpPYX1M/s320/Screen-shot-2011-04-07-at-15.37.20.gif" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;To Auto-Generate the 'Title' column Value:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Using SP Designer you can auto-populate the 'Title' column based the values of other columns in your list item using the 'Update List Item' action:&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-xB3qMKf6SPk/TZ3KcELInaI/AAAAAAAAAYA/krDmxj8FgaA/s1600/Screen%2Bshot%2B2011-04-07%2Bat%2B15.29.31.png" imageanchor="1"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/-xB3qMKf6SPk/TZ3KcELInaI/AAAAAAAAAYA/krDmxj8FgaA/s320/Screen%2Bshot%2B2011-04-07%2Bat%2B15.29.31.png" width="282" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;NOTE: When a user creates a new list item the 'Title' will initially be set to '(no title)'. &amp;nbsp;Associated tasks in the workflow are related to the list item title by SharePoint (for example when collecting data from users). To avoid tasks being related to items with '(no title)' set a 'Pause for Duration' action for 5 minutes in the workflow to allow SP timer jobs to reflect your auto-generated title in the list.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-7623751017906196414?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/7623751017906196414/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/04/hide-and-auto-generate-title-column-in.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7623751017906196414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7623751017906196414'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/04/hide-and-auto-generate-title-column-in.html' title='Hide and auto-generate &apos;Title&apos; column in SP Designer workflow'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-WznvOwdWXW4/TZ3M75SiY4I/AAAAAAAAAYI/d0JJxpPYX1M/s72-c/Screen-shot-2011-04-07-at-15.37.20.gif' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-7519391094955253834</id><published>2011-04-07T14:19:00.002Z</published><updated>2011-06-02T09:29:36.207Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>Formulas for Calculated Fields</title><content type='html'>This content comes from: http://office.microsoft.com/en-au/windows-sharepoint-services-help/examples-of-common-formulas-HA001160947.aspx&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="cdArticleHead" style="color: #666666; font-family: 'Segoe UI', Arial; font-size: 10px; margin-bottom: 19px; margin-left: 2px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;h1 class="cdTitleEx" style="color: #454545; font-size: 2.2em; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Examples of common formulas&lt;/h1&gt;&lt;/div&gt;&lt;div class="cdArticleLeft" style="color: #666666; font-family: 'Segoe UI', Arial; font-size: 10px; margin-bottom: 0px; margin-left: 2px; margin-right: 0px; margin-top: 35px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;  &lt;div class="cdArticleBody" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;    &lt;div class="cdArticleText cntArticleBody" style="color: #454545; font-family: Arial, Verdana; font-size: 1.2em; line-height: 1.8em; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;        You can use the following examples in calculated columns. Examples that do not include column references can be used to specify the default value of a column.&lt;/div&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Hide" border="0" class="cntExpandoImg" id="divExpCollAsst_266628313_img" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline-block; margin-left: -14px; padding-bottom: 0px; padding-left: 0px; padding-right: 5px; padding-top: 0px; visibility: visible;" title="Hide" /&gt;Conditional formulas&lt;/div&gt;      &lt;div border="0" class="ACECollapsed" id="divExpCollAsst_266628313" style="display: block; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 34px; padding-right: 0px; padding-top: 0px;"&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Check if a number is greater than or less than another number&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the IF function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;gt;Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Is Column1 greater than Column2? (Yes)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(Column1&amp;lt;=Column2, "OK", "Not OK")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Is Column1 less than or equal to Column2? (Not OK)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Return a logical value after comparing column contents&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          For a result that is a logical value (Yes or No), use the AND, OR, and NOT functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=AND(Column1&amp;gt;Column2, Column1&lt;column3)&gt;&lt;/column3)&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Is 15 greater than 9 and less than 8? (No)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=OR(Column1&amp;gt;Column2, Column1&lt;column3)&gt;&lt;/column3)&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Is 15 greater than 9 or less than 8? (Yes)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=NOT(Column1+Column2=24)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Is 15 plus 9 not equal to 24? (No)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          For a result that is another calculation, or any other value other than Yes or No, use the IF, AND, and OR functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(Column1=15, "OK", "Not OK")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;If the value in Column1 equals 15, then return "OK". (OK)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(AND(Column1&amp;gt;Column2, Column1&lt;column3), not="" ok")="" ok",=""&gt;&lt;/column3),&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;If 15 is greater than 9 and less than 8, then return "OK". (Not OK)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;8&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(OR(Column1&amp;gt;Column2, Column1&lt;column3), not="" ok")="" ok",=""&gt;&lt;/column3),&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;If 15 is greater than 9 or less than 8, then return "OK". (OK)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Display zeroes as blanks or dashes&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the IF function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1-Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Second number subtracted from the first (0)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(Column1-Column2,"-",Column1-Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Returns a dash when the value is zero (-)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;      &lt;/div&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Hide" border="0" class="cntExpandoImg" id="divExpCollAsst_17640528_img" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline-block; margin-left: -14px; padding-bottom: 0px; padding-left: 0px; padding-right: 5px; padding-top: 0px; visibility: visible;" title="Hide" /&gt;Date and time formulas&lt;/div&gt;      &lt;div border="0" class="ACECollapsed" id="divExpCollAsst_17640528" style="display: block; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 34px; padding-right: 0px; padding-top: 0px;"&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Add dates&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To add a number of days to a date, use the addition (+) operator. Note that when manipulating dates, the return type of the calculated column must be set to&amp;nbsp;&lt;b class="bterm" style="font-weight: bold;"&gt;Date and Time&lt;/b&gt;.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/9/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1+Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 3 days to 6/9/2007 (6/12/2007)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12/10/2008&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;54&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1+Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 54 days to 12/10/2008 (2/2/2009)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To add a number of months to a date, use the DATE, YEAR, MONTH, and DAY functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/9/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1),MONTH(Column1)+Column2,DAY(Column1))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 3 months to 6/9/2007 (9/9/2007)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12/10/2008&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;25&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1),MONTH(Column1)+Column2,DAY(Column1))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 25 months to 12/10/2008 (1/10/2011)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To add a number of years to a date, use the DATE, YEAR, MONTH, and DAY functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/9/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1)+Column2,MONTH(Column1),DAY(Column1))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 3 years to 6/9/2007 (6/9/2010)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12/10/2008&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;25&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1)+Column2,MONTH(Column1),DAY(Column1))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 25 years to 12/10/2008 (12/10/2033)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To add a combination of days, months, and years to a date, use the DATE, YEAR, MONTH, and DAY functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/9/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1)+3,MONTH(Column1)+1,DAY(Column1)+5)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 3 years, 1 month, and 5 days to 6/9/2007 (1/14/2009)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12/10/2008&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATE(YEAR(Column1)+1,MONTH(Column1)+7,DAY(Column1)+5)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add 1 year, 7 months, and 5 days to 6/9/2007 (7/15/2010)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the difference between two dates&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the DATEDIF function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;01-Jan-1995&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15-Jun-1999&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATEDIF(Column1, Column2,"d")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Return the number of days between the two dates (1626)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;01-Jan-1995&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15-Jun-1999&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATEDIF(Column1, Column2,"ym")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Return the number of months between the dates, ignoring the year part (5)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;01-Jan-1995&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15-Jun-1999&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=DATEDIF(Column1, Column2,"yd")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Return the number of days between the dates, ignoring the year part (165)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the difference between two times&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          For presenting the result in the standard time format (hours:minutes:seconds), use the subtraction operator (-) and the TEXT function. For this method to work, hours must not exceed 24, and minutes and seconds must not exceed 60.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column2-Column1,"h")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours between two times (4)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column2-Column1,"h:mm")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours and minutes between two times (4:55)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column2-Column1,"h:mm:ss")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours,minutes, and seconds between two times (4:55:00)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          For presenting the result in a total based on one time unit, use the INT function, or HOUR, MINUTE, and SECOND functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=INT((Column2-Column1)*24)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Total hours between two times (28)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=INT((Column2-Column1)*1440)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Total minutes between two times (1735)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=INT((Column2-Column1)*86400)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Total seconds between two times (104100)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=HOUR(Column2-Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours between two times, when the difference does not exceed 24. (4)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=MINUTE(Column2-Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Minutes between two times, when the difference does not exceed 60. (55)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/09/2007 10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;06/10/2007 3:30 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=SECOND(Column2-Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Seconds between two times, when the difference does not exceed 60. (0)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Convert times&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To convert hours from standard time format to a decimal number, use the INT function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10:35 AM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=(Column1-INT(Column1))*24&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Number of hours since 12:00 AM (10.583333)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12:15 PM&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=(Column1-INT(Column1))*24&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Number of hours since 12:00 AM (12.25)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To convert hours from a decimal number to the standard time format (hours:minutes:seconds), use the divisor operator and the TEXT function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;23:58&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column1/24, "hh:mm:ss")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours, minutes, and seconds since 12:00 AM (00:59:55)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2:06&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column1/24, "h:mm")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Hours and minutes since 12:00 AM (0:05)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Insert Julian dates&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          The phrase "Julian date" is sometimes used to refer to a date format that is a combination of the current year, and the number of days since the beginning of the year. For example, January 1, 2007 is represented as 2007001 and December 31, 2007 is represented as 2003356. This format is not based on the Julian calendar.&lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To convert a date to a Julian date, use the TEXT and DATEVALUE functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/23/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column1,"yy")&amp;amp;TEXT((Column1-DATEVALUE("1/1/"&amp;amp; TEXT(Column1,"yy"))+1),"000")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Date in "Julian" format, with a two-digit year (07174)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/23/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(Column1,"yyyy")&amp;amp;TEXT((Column1-DATEVALUE("1/1/"&amp;amp;TEXT(Column1,"yy"))+1),"000")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Date in "Julian" format, with a four-digit year (2007174)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To convert a date to a Julian date used in astronomy, use the constant 2415018.50. This formula only works for dates after 3/1/1901, and if you are using the 1900 date system.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6/23/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1+2415018.50&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Date in "Julian" format, used in astronomy (2454274.50)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Show dates as the day of the week&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To convert dates to the text for the day of the week, use the TEXT and WEEKDAY functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;19-Feb-2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(WEEKDAY(Column1), "dddd")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Calculates the day of the week for the date and returns the full name of the day (Monday)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3-Jan-2008&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TEXT(WEEKDAY(Column1), "ddd")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Calculates the day of the week for the date and returns the abbreviated name of the day (Thu)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;      &lt;/div&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Hide" border="0" class="cntExpandoImg" id="divExpCollAsst_546775436_img" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline-block; margin-left: -14px; padding-bottom: 0px; padding-left: 0px; padding-right: 5px; padding-top: 0px; visibility: visible;" title="Hide" /&gt;Math formulas&lt;/div&gt;      &lt;div border="0" class="ACECollapsed" id="divExpCollAsst_546775436" style="display: block; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 34px; padding-right: 0px; padding-top: 0px;"&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Add numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To add numbers in two or more columns in a row, use the addition operator (+) or the SUM function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1+Column2+Column3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add the values in the first three columns (15)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=SUM(Column1,Column2,Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add the values in the first three columns (15)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=SUM(IF(Column1&amp;gt;Column2, Column1-Column2, 10), Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;If Column1 is greater than Column2, add the difference and Column3. Else add 10 and Column3. (5)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Subtract numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the subtraction (-) operator to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;-8000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1-Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Subtract 9000 from 15000 (6000)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;-8000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=SUM(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Add numbers in the first three columns, including negative values (16000)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the difference between two numbers as a percentage&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the subtraction (-) and division (/) operators, and the ABS function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2342&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2500&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=(Column2-Column1)/ABS(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Percentage change (6.75% or 0.06746)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Multiply numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the multipliation (*) operator or the PRODUCT function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1*Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Multiplies the numbers in the first two columns (10)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=PRODUCT(Column1, Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Multiplies the numbers in the first two columns (10)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=PRODUCT(Column1,Column2,2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Multiplies the numbers in the first two columns and the number 2 (20)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Divide numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the division operator (/) to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1/Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Divides 15000 by 12 (1250)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;15000&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=(Column1+10000)/Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Adds 15000 and 10000, and then divides the total by 12 (2,083)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the average of numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          The average is also called the mean. To calculate the average of numbers in two or more columns in a row, use the AVERAGE function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=AVERAGE(Column1, Column2,Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Average of the numbers in the first three columns (5)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;6&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=AVERAGE(IF(Column1&amp;gt;Column2, Column1-Column2, 10), Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;If Column1 is greater than Column, calculate the average of the difference and Column3. Else calculate the average of the value 10 and Column3. (2.5)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the median of numbers&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          The median is the value at the center of an ordered range of numbers. Use the MEDIAN function to calculate the median of a group of numbers.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;A&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;B&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;C&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;D&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;E&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;F&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;7&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;27&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;0&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;4&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=MEDIAN(A, B, C, D, E, F)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Median of numbers in the first 6 columns (8)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Calculate the smallest or largest number in a range&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To calculate the smallest or largest number in two or more columns in a row, use the MIN and MAX functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;7&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=MIN(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Smallest number (7)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;7&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=MAX(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Largest number (10)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Count values&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To count numeric values, use the COUNT function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Apple&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12/12/2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=COUNT(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Counts the number of columns that contain numeric values. Excludes date and time, text, and null values.(0)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;#DIV/0!&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;1.01&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=COUNT(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Counts the number of columns that contain numeric values, but excludes error and logical values (2)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Increase or decrease a number by a percentage&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the percentage (%) operator to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;23&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3%&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1*(1+5%)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Increases number in Column1 by 5% (24.15)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;23&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3%&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1*(1+Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Increase number in Column1 by the percent value in Column2: 3% (23.69)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;23&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3%&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1*(1-Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Decrease number in Column1 by the percent value in Column2: 3% (22.31)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Raise a number to a power&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the exponent (^) operator or the POWER function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1^Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Calculates five squared (25)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=POWER(Column1, Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Calculates five cubed (125)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Round a number&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To round up a number, use the ROUNDUP, ODD, and EVEN functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;20.3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDUP(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 20.3 up to the nearest whole number (21)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;-5.9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDUP(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds -5.9 up (-6)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12.5493&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDUP(Column1,2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 12.5493 up to the nearest hundredth, two decimal places (12.55)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;20.3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=EVEN(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 20.3 up to the nearest even number (22)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;20.3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ODD(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 20.3 up to the nearest odd number (21)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To round down a number, use the ROUNDDOWN function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;20.3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDDOWN(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 20.3 down to the nearest whole number (20)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;-5.9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDDOWN(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds -5.9 down (-5)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;12.5493&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDDOWN(Column1,2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 12.5493 down to the nearest hundredth, two decimal places (12.54)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To round a number to the nearest number or fraction, use the ROUND function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;20.3&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 20.3 down, because the fraction part is less than .5 (20)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5.9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds 5.9 up, because the fraction part is greater than .5 (6)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;-5.9&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1,0)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds -5.9 down, because the fraction part is less than -.5 (-6)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;1.25&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1, 1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds the number to the nearest tenth (one decimal place). Because the portion to be rounded is 0.05 or greater, the number is rounded up (result: 1.3)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;30.452&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1, 2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds the number to the nearest hundredth (two decimal places). Because the portion to be rounded, 0.002, is less than 0.005, the number is rounded down (result: 30.45)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To round a number to the significant digit above 0, use the ROUND, ROUNDUP, ROUNDDOWN, INT, and LEN functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5492820&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUND(Column1,3-LEN(INT(Column1)))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds the number to 3 significant digits (5490000)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;22230&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDDOWN(Column1,3-LEN(INT(Column1)))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds the bottom number down to 3 significant digits (22200)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5492820&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ROUNDUP(Column1, 5-LEN(INT(Column1)))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Rounds the top number up to 5 significant digits (5492900)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;      &lt;/div&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Hide" border="0" class="cntExpandoImg" id="divExpCollAsst_42518815_img" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline-block; margin-left: -14px; padding-bottom: 0px; padding-left: 0px; padding-right: 5px; padding-top: 0px; visibility: visible;" title="Hide" /&gt;Text formulas&lt;/div&gt;      &lt;div border="0" class="ACECollapsed" id="divExpCollAsst_42518815" style="display: block; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 34px; padding-right: 0px; padding-top: 0px;"&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Change the case of text&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the UPPER, LOWER, or PROPER functions to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;nancy Davolio&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=UPPER(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Changes text to uppercase (NANCY DAVOLIO)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;nancy Davolio&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=LOWER(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Changes text to lowercase (nancy davolio)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;nancy Davolio&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=PROPER(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Changes text to title case (Nancy Davolio)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Combine first and last names&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the ampersand (&amp;amp;) operator or the CONCATENATE function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Nancy&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Fuller&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;amp;Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines the two strings (NancyFuller)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Nancy&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Fuller&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;amp;" "&amp;amp;Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines the two strings, separated by a space (Nancy Fuller)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Nancy&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Fuller&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column2&amp;amp;","&amp;amp;Column1&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines the two strings, separated by a comma (Fuller,Nancy)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Nancy&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Fuller&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=CONCATENATE(Column2, ",", Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines the two strings, separated by a comma (Fuller,Nancy)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Combine text and numbers from different columns&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the CONCATENATE and TEXT functions, and the ampersand (&amp;amp;) operator to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Buchanan&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;28&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;amp;" sold "&amp;amp;Column2&amp;amp;" units."&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines contents above into a phrase (Buchanan sold 28 units)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Dodsworth&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;40%&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;amp;" sold "&amp;amp;TEXT(Column2,"0%")&amp;amp;" of the total sales."&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;&lt;div style="line-height: 14px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;              Combines contents above into a phrase (Dodsworth sold 40% of the total sales).&lt;/div&gt;              &lt;div style="line-height: 14px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;                &lt;b class="cntnote" style="background-attachment: initial; background-clip: initial; background-color: #f9f9f9; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(234, 234, 234); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: initial; border-left-style: none; border-left-width: initial; border-right-color: initial; border-right-style: none; border-right-width: initial; border-top-color: rgb(234, 234, 234); border-top-style: solid; border-top-width: 1px; color: #454545; font-size: 0.92em; font-weight: normal; line-height: 1em; margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 20px; padding-bottom: 1px; padding-left: 1px; padding-right: 2px; padding-top: 1px; text-transform: uppercase;"&gt;&amp;nbsp;NOTE&amp;nbsp;&lt;/b&gt;&amp;nbsp;&amp;nbsp;The TEXT function appends the formatted value of Column2 instead of the underlying value, which is .4.&lt;/div&gt;              &lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Buchanan&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;28&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=CONCATENATE(Column1," sold ",Column2," units.")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combines contents above into a phrase (Buchanan sold 28 units)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Combine text with a date or time&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the TEXT function and the ampersand (&amp;amp;) operator to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Billing Date&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5-Jun-2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;="Statement date: "&amp;amp;TEXT(Column2, "d-mmm-yyyy")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combine text with a date (Statement date: 5-Jun-2007)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Billing Date&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;5-Jun-2007&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1&amp;amp;" "&amp;amp;TEXT(Column2, "mmm-dd-yyyy")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Combine text and date from difference columns into one column (Billing Date Jun-05-2007)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Compare column contents&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To compare one column to another column or a list of values, use the EXACT function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;BD122&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;BD123&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=EXACT(Column1,Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Compare contents of first two columns (No)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;BD122&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;BD123&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=EXACT(Column1,"BD122")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Compare contents of Column1 and the string "BD122" (Yes)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Check if a column value or a part of it matches specific text&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To check if a column value or a part of it matches specific text, use the IF, FIND, SEARCH, and ISNUMBer functions.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Davolio&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(Column1="Davolio", "OK", "Not OK")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Checks to see if Column1 is Davolio (OK)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Davolio&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(ISNUMBER(FIND("v",Column1)), "OK", "Not OK")&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Checks to see if Column1 contains the letter v (OK)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;BD123&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=ISNUMBER(FIND("BD",Column1))&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Checks to see if Column1 contains BD (Yes)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Count nonblank columns&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the COUNTA function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN3&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Sales&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;19&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=COUNTA(Column1, Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Counts the number of nonblank columns (2)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Sales&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;19&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=COUNTA(Column1, Column2, Column3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Counts the number of nonblank columns (2)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Remove characters from text&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the LEN, LEFT, and RIGHT functions to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Vitamin A&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=LEFT(Column1,LEN(Column1)-2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Return 7 (9-2) characters, starting from left (Vitamin)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Vitamin B1&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=RIGHT(Column1, LEN(Column1)-8)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Return 2 (10-8) characters, starting from right (B1)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Remove spaces from the beginning and end of a column&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the TRIM function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;&lt;b class="runinhead" style="font-weight: bold;"&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Hello there!&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=TRIM(Column1)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Remove the spaces from the beginning and end (Hello there!)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Repeat a characater in a column&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          Use the REPT function to do this task.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=REPT(".",3)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Repeats a period 3 times (...)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=REPT("-",10)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Repeats a dash 10 times (----------)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;      &lt;/div&gt;      &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Hide" border="0" class="cntExpandoImg" id="divExpCollAsst_3785877_img" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline-block; margin-left: -14px; padding-bottom: 0px; padding-left: 0px; padding-right: 5px; padding-top: 0px; visibility: visible;" title="Hide" /&gt;Other formulas&lt;/div&gt;      &lt;div border="0" class="ACECollapsed" id="divExpCollAsst_3785877" style="display: block; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 34px; padding-right: 0px; padding-top: 0px;"&gt;        &lt;h4 style="color: #454545; font-family: Arial, Verdana; font-size: 1.15em; font-weight: bold; margin-bottom: 2px; margin-left: 0px; margin-right: 0px; margin-top: 20px;"&gt;          Hide error values in columns&lt;/h4&gt;        &lt;div style="line-height: 20px; margin-bottom: 10px; margin-left: inherit; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          To display a dash, #N/A, or NA in place of an error value, use the ISERROR function.&lt;/div&gt;        &lt;div class="cntIndent0" id="tableoverflow" style="line-height: normal; margin-bottom: 20px; margin-left: inherit; margin-right: 0px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;          &lt;table class="collapse" style="border-bottom-color: initial; border-bottom-style: none; border-bottom-width: initial; border-collapse: collapse; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;tbody&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN1&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;COLUMN2&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;FORMULA&lt;/b&gt;&lt;/th&gt;&lt;th style="background-attachment: initial !important; background-clip: initial !important; background-color: rgb(216, 216, 216) !important; background-image: initial !important; background-origin: initial !important; background-position: initial initial !important; background-repeat: initial initial !important; border-bottom-color: rgb(164, 164, 164); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(164, 164, 164); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial, Verdana; font-size: 1.12em; font-weight: normal; padding-bottom: 3px; padding-left: 5px; padding-right: 10px; padding-top: 3px; text-align: left; text-transform: uppercase;"&gt;&lt;b class="bterm" style="font-weight: bold;"&gt;DESCRIPTION&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;0&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=Column1/Column2&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Results in an error (#DIV/0)&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgeven" style="background-color: #f3f3f3; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;0&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(ISERROR(Column1/Column2),"NA",Column1/Column2)&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;Returns NA when the value is an error&lt;/td&gt;&lt;/tr&gt;            &lt;tr class="trbgodd" style="background-color: white; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; color: #454545; font-family: Arial, Verdana; font-size: 0.92em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: top;"&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;10&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;0&lt;/td&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 5px; padding-right: 10px; padding-top: 4px; vertical-align: top;"&gt;=IF(ISERROR(Column1/Column2),"-",Column1/Column2)&lt;/td&gt;&lt;/tr&gt;            &lt;/tbody&gt;&lt;/table&gt;        &lt;/div&gt;      &lt;/div&gt;    &lt;/div&gt;  &lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-7519391094955253834?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/7519391094955253834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/04/formulas-for-calculated-fields.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7519391094955253834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/7519391094955253834'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/04/formulas-for-calculated-fields.html' title='Formulas for Calculated Fields'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-1055424164858231100</id><published>2011-02-28T17:41:00.002Z</published><updated>2011-06-02T09:29:36.208Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Branding'/><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Content Query Web Part'/><title type='text'>Extended Content Query Web Part - 2 Column Box Layout</title><content type='html'>Before extending Content Query Web Parts (CQWP) in SharePoint refer to the following related blogs:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;MSDN,&amp;nbsp; &lt;a href="http://blogs.msdn.com/b/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx"&gt;Configuring and Customizing the Content Query Web Part&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Heather Solomon, &lt;a href="http://www.heathersolomon.com/blog/articles/customitemstyle.aspx"&gt;Customizing the Content Query Web Part and Custom Item Styles&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Glyn Clough, &lt;a href="http://www.glynblogs.com/2010/11/viewing-raw-data-in-a-content-query-web-part.html"&gt;Viewing raw data in a Content Query Web Part&lt;/a&gt;&lt;/li&gt;&lt;li&gt;My previous blog, &lt;a href="http://bytelab.blogspot.com/2008/05/content-query-web-part-custom-item.html"&gt;Content Query Web Part - Custom Item Style&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;The following example creates a 'Highlight Box' two column layout output from a SharePoint list by applying custom XSLT styles using the Content Query Web Part.&amp;nbsp; The result looks like this:&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-lyg3qxDS7qk/TWvQpjXqUtI/AAAAAAAAAXk/QsV_yT1XfVI/s1600/Screen+shot+2011-02-28+at+16.42.17.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="197" src="https://lh4.googleusercontent.com/-lyg3qxDS7qk/TWvQpjXqUtI/AAAAAAAAAXk/QsV_yT1XfVI/s400/Screen+shot+2011-02-28+at+16.42.17.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;Make a copy of the SharePoint XSL stylesheets '&lt;b&gt;ItemStyle.xsl&lt;/b&gt;' and '&lt;b&gt;ContentQueryMain.xsl&lt;/b&gt;' located in the portal root Style Library (http://hostheader/Style%20Library/) and place the copies in a folder called 'Custom' within the Style Library (http://hostheader/Style%20Library/XSL%20Style%20Sheets/Custom/). Rename as 'ItemStyleExtended.xsl' and 'ContentQueryMainExtended.xsl'.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open &lt;b&gt;ContentQueryMainExtended.xsl&lt;/b&gt; in notepad:&lt;br /&gt;&lt;/li&gt;&lt;ol&gt;&lt;li&gt;Add the following new variables:&lt;br /&gt;&lt;br /&gt;&lt;style&gt;@font-face {  font-family: "Arial";}@font-face {  font-family: "Cambria";}p.MsoNormal, li.MsoNormal, div.MsoNormal { margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: "Times New Roman"; }div.Section1 { page: Section1; }&lt;/style&gt;     &lt;div class="MsoNormal" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;&amp;lt;xsl:variable name="BeginListItemHighlightBoxLeft" select="string('&amp;lt;li class="dfwp-item highlightbox-item left"&amp;gt;')" /&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;&amp;lt;xsl:variable name="BeginListItemHighlightBoxRight" select="string('&amp;lt;li class="dfwp-item highlightbox-item right"&amp;gt;')" /&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;Inside the &lt;b&gt;OuterTemplate.CallItemTemplate&lt;/b&gt; insert a new xsl choose:&lt;br /&gt;&lt;br /&gt;&lt;style&gt;@font-face {  font-family: "Arial";}@font-face {  font-family: "Cambria";}p.MsoNormal, li.MsoNormal, div.MsoNormal { margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: "Times New Roman"; }div.Section1 { page: Section1;&lt;/style&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;xsl:choose&amp;gt; &lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;xsl:when test="@Style='HighlightBoxTable'"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:choose&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:when test="$CurPosition mod 2 = 1"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of disable-output-escaping="yes" select="$BeginListItemHighlightBoxLeft" /&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xsl:when&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;xsl:otherwise&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of disable-output-escaping="yes" select="$BeginListItemHighlightBoxRight" /&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xsl:otherwise&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xsl:choose&amp;gt;          &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:when&amp;gt; &lt;/span&gt;&lt;/span&gt;   &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;xsl:otherwise&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of disable-output-escaping="yes" select="$BeginListItem" /&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:otherwise&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;lt;/xsl:choose&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;Open the &lt;b&gt;ItemStyleExtended.xsl&lt;/b&gt; in notepad and create a new template at the end of the existing xsl:&lt;br /&gt;&lt;br /&gt;&lt;style&gt;@font-face {  font-family: "Arial";}@font-face {  font-family: "Cambria";}p.MsoNormal, li.MsoNormal, div.MsoNormal { margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: "Times New Roman"; }div.Section1 { page: Section&lt;/style&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;xsl:template name="HighlightBoxTable" match="Row[@Style='HighlightBoxTable']" mode="itemstyle"&amp;gt;           &lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &amp;lt;xsl:variable name="SafeLinkUrl"&amp;gt; &lt;/span&gt;&lt;/span&gt;   &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:call-template name="OuterTemplate.GetSafeLink"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;xsl:with-param name="UrlColumnName" select="'LinkUrl'"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;/xsl:call-template&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:variable&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; &amp;lt;xsl:variable name="SafeImageUrl"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:call-template name="OuterTemplate.GetSafeStaticUrl"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;xsl:with-param name="UrlColumnName" select="'ImageUrl'"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;/xsl:call-template&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:variable&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; &amp;lt;xsl:variable name="DisplayTitle"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:call-template name="OuterTemplate.GetTitle"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:with-param name="Title" select="@Title"/&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:with-param name="UrlColumnName" select="'LinkUrl'"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;/xsl:call-template&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:variable&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; &amp;lt;xsl:variable name="LinkTarget"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:if test="@OpenInNewWindow = 'True'" &amp;gt;_blank&amp;lt;/xsl:if&amp;gt;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;/xsl:variable&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &amp;lt;xsl:variable name="ImageClass" select="@Class" /&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; &amp;lt;div class="highlight"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="highlightHead"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;&amp;lt;a href="{$SafeLinkUrl}"&amp;gt;&amp;lt;xsl:value-of select="@Title"/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="highlightContentCtr"&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="{$SafeLinkUrl}" target="{$LinkTarget}"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;img align="left" class="{@Class}" src="{$SafeImageUrl}" alt="{@ImageUrlAltText}" /&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;/a&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="highlightContent"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of select="substring(@Description,1,300)" disable-output-escaping="yes"/&amp;gt;&amp;lt;/div&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/div&amp;gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/xsl:template&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Update &lt;b&gt;Custom.css&lt;/b&gt; with the following styles:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;li.highlightbox-item {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    width:49%;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;li.highlightbox-item.left {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    float:left;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    margin-right:10px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;li.highlightbox-item.right {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    float:right;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    margin-right:0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    background-color: #f7f7f7; &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    padding: 0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border: 0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    margin-bottom:10px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border-radius-top-left:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border-radius-top-right:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -moz-border-radius-topleft:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -moz-border-radius-topright:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -webkit-border-top-left-radius:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -webkit-border-top-right-radius:5px;    &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightHead {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    padding: 0.5em;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    font-weight:bold;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    background-color: #e4e4e4;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border-radius-top-left:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border-radius-top-right:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -moz-border-radius-topleft:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -moz-border-radius-topright:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -webkit-border-top-left-radius:5px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    -webkit-border-top-right-radius:5px;    &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightHead h3 {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    margin:0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightContentCtr {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    min-height:50px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border: 1px solid #e4e4e4;    &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border-top:0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightContentCtr img {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    margin: 0 10px 0 0; &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    border: 0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    padding: 0;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightContentCtr img.icon { &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    width:50px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    height:50px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightContentCtr img.image { &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    width:75px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    height:50px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;div.highlight div.highlightContent {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp;    padding: 10px 10px 4px 10px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Add&lt;/b&gt; a &lt;b&gt;Content Query Web Part&lt;/b&gt; (CQWP) to a page. Do not configure it in any way. &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Export&lt;/b&gt; the &lt;b&gt;Content Query Web Part&lt;/b&gt; to your desktop.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://lh4.googleusercontent.com/-MVbIZ-d8zJY/TWvVTrtKvQI/AAAAAAAAAXs/bYUa8Qcqqp8/s1600/Screen-shot-2011-02-28-at-16.59.08.gif" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="77" src="https://lh4.googleusercontent.com/-MVbIZ-d8zJY/TWvVTrtKvQI/AAAAAAAAAXs/bYUa8Qcqqp8/s320/Screen-shot-2011-02-28-at-16.59.08.gif" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open the exported CQWP in notepad and edit the following properties:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;property name="Title" type="string"&amp;gt;Extended Content Query&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;   &amp;lt;property name="ItemXslLink"   type="string"&amp;gt;/Style%20Library/XSL%20Style%20Sheets/Custom/ItemStyleExtended.xsl&amp;lt;/property&amp;gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;   &amp;lt;property name="MainXslLink"   type="string"&amp;gt;/Style%20Library/XSL%20Style%20Sheets/Custom/ContentQueryMainExtended.xsl&amp;lt;/property&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;On the web part page where you would like the CQWP displayed, select &lt;b&gt;Edit&lt;/b&gt;, &lt;b&gt;Add a Web Part&lt;/b&gt;, &lt;b&gt;Upload a Web Part&lt;/b&gt;:&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;a href="https://lh5.googleusercontent.com/-Jco4_9dgfjI/TWvZfIOdRrI/AAAAAAAAAXw/vWiMtEK-4Eg/s1600/Screen-shot-2011-02-28-at-17.17.35.gif" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="175" src="https://lh5.googleusercontent.com/-Jco4_9dgfjI/TWvZfIOdRrI/AAAAAAAAAXw/vWiMtEK-4Eg/s200/Screen-shot-2011-02-28-at-17.17.35.gif" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;On the web part page where you would like the CQWP displayed, select &lt;b&gt;Edit&lt;/b&gt;, &lt;b&gt;Add a Web Part&lt;/b&gt;, &lt;b&gt;Imported Web Parts&lt;/b&gt;, &lt;b&gt;Extended Content Query&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://lh6.googleusercontent.com/-b3K0Q5oh0SQ/TWvabt2AsUI/AAAAAAAAAX0/oXOV7jnbX8c/s1600/Screen-shot-2011-02-28-at-17.22.48.gif" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="121" src="https://lh6.googleusercontent.com/-b3K0Q5oh0SQ/TWvabt2AsUI/AAAAAAAAAX0/oXOV7jnbX8c/s200/Screen-shot-2011-02-28-at-17.22.48.gif" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Edit the Extended CQWP properties: &lt;br /&gt;&lt;/li&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-b3K0Q5oh0SQ/TWvabt2AsUI/AAAAAAAAAX0/oXOV7jnbX8c/s1600/Screen-shot-2011-02-28-at-17.22.48.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt; &lt;/a&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;In the properties panel expand the &lt;b&gt;Query&lt;/b&gt; node. Select the radio button &lt;b&gt;Show items from the following list&lt;/b&gt; and enter the path to the associated SharePoint list, (which requires six columns including: &lt;b&gt;Title&lt;/b&gt;, &lt;b&gt;Image&lt;/b&gt;, &lt;b&gt;Description&lt;/b&gt;, &lt;b&gt;URL&lt;/b&gt;, &lt;b&gt;Class&lt;/b&gt; and &lt;b&gt;Order&lt;/b&gt;). Apply these changes by selecting the &lt;b&gt;Apply&lt;/b&gt; button at the bottom of the properties panel.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Expand the &lt;b&gt;Presentation&lt;/b&gt; node and in the &lt;b&gt;Grouping and Sorting&lt;/b&gt; section set the &lt;b&gt;Sort items by&lt;/b&gt; to ‘Order’. &lt;br /&gt;&lt;br /&gt;&lt;a href="https://lh6.googleusercontent.com/-QukkodVHfxU/TWvc0NY271I/AAAAAAAAAX4/5nzWipE4CKk/s1600/Screen+shot+2011-02-28+at+17.27.14.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://lh6.googleusercontent.com/-QukkodVHfxU/TWvc0NY271I/AAAAAAAAAX4/5nzWipE4CKk/s320/Screen+shot+2011-02-28+at+17.27.14.png" width="204" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;In the &lt;b&gt;Styles&lt;/b&gt; section set the &lt;b&gt;Item style&lt;/b&gt; to &lt;b&gt;HighlightBoxTable&lt;/b&gt;. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;In the &lt;b&gt;Fields&lt;/b&gt; to display section set as in the screenshot.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://lh6.googleusercontent.com/-9UpIFx6gRng/TWvdCrj8I0I/AAAAAAAAAX8/15rFnXZ_BWE/s1600/Screen+shot+2011-02-28+at+13.45.31.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="170" src="https://lh6.googleusercontent.com/-9UpIFx6gRng/TWvdCrj8I0I/AAAAAAAAAX8/15rFnXZ_BWE/s200/Screen+shot+2011-02-28+at+13.45.31.png" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Expand the &lt;b&gt;Appearance&lt;/b&gt; node and set the &lt;b&gt;Chrome&lt;/b&gt; to none. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select &lt;b&gt;Ok&lt;/b&gt;.&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;&lt;br /&gt;&lt;ol&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-1055424164858231100?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/1055424164858231100/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/02/extended-content-query-web-part-2.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1055424164858231100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1055424164858231100'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/02/extended-content-query-web-part-2.html' title='Extended Content Query Web Part - 2 Column Box Layout'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='https://lh4.googleusercontent.com/-lyg3qxDS7qk/TWvQpjXqUtI/AAAAAAAAAXk/QsV_yT1XfVI/s72-c/Screen+shot+2011-02-28+at+16.42.17.png' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-1076395232054991172</id><published>2011-02-14T18:02:00.002Z</published><updated>2011-02-14T18:04:37.924Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='XSL'/><title type='text'>XSL disable-output-escaping</title><content type='html'>Render HTML using 'disable-output-escaping': &lt;br /&gt;&lt;br /&gt;&amp;lt;xsl:value-of select="expression" &lt;b&gt;disable-output-escaping="yes|no"&lt;/b&gt; /&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.w3schools.com/xsl/el_value-of.asp"&gt;http://www.w3schools.com/xsl/el_value-of.asp&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;table border="1" cellpadding="0" cellspacing="0" class="reference"&gt;&lt;tbody&gt;&lt;tr&gt;     &lt;th align="left" valign="top" width="35%"&gt;Attribute&lt;/th&gt;     &lt;th align="left" valign="top" width="15%"&gt;Value&lt;/th&gt;     &lt;th align="left" valign="top" width="50%"&gt;Description&lt;/th&gt;   &lt;/tr&gt;&lt;tr&gt;     &lt;td valign="top"&gt;select&lt;/td&gt;     &lt;td valign="top"&gt;expression&lt;/td&gt;     &lt;td valign="top"&gt;Required. An XPath expression that specifies which      node/attribute to extract the value from. It works like navigating a file   system where a forward slash (/) selects subdirectories.&lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;     &lt;td valign="top"&gt;disable-output-escaping&lt;/td&gt;     &lt;td valign="top"&gt;yes&lt;br /&gt;no&lt;/td&gt;     &lt;td valign="top"&gt;Optional. "yes" indicates that special characters (like      "&amp;lt;") should be output as is. "no" indicates that special characters (like      "&amp;lt;") should be output as "&amp;lt;". Default is "no"&lt;/td&gt;   &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-1076395232054991172?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/1076395232054991172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/02/xsl-disable-output-escaping.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1076395232054991172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/1076395232054991172'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/02/xsl-disable-output-escaping.html' title='XSL disable-output-escaping'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-2158386686166556184</id><published>2011-01-31T15:47:00.000Z</published><updated>2011-06-02T09:29:36.209Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>Add GUIDGEN to Visual Studio 2010</title><content type='html'>To add GUIDGEN to the Visual Studio 'Tools' menu:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open Visual Studio 2010&lt;/li&gt;&lt;li&gt;Select 'Tools' / 'External Tools'&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Z95_r_R47pg/TUbWkQgEH_I/AAAAAAAAAHI/n7eq5javkts/s1600/Picture+3.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="317" src="http://3.bp.blogspot.com/_Z95_r_R47pg/TUbWkQgEH_I/AAAAAAAAAHI/n7eq5javkts/s320/Picture+3.png" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click 'Add'&lt;/li&gt;&lt;li&gt;Enter 'Title' for the command like 'Create GUID'&lt;/li&gt;&lt;li&gt;Click on the browse button named and navigate to C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\guidgen.exe&lt;/li&gt;&lt;li&gt;Click OK &lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Z95_r_R47pg/TUbWkkBZIOI/AAAAAAAAAHM/fc2MkY_kb-U/s1600/Picture-6.gif" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="229" src="http://3.bp.blogspot.com/_Z95_r_R47pg/TUbWkkBZIOI/AAAAAAAAAHM/fc2MkY_kb-U/s320/Picture-6.gif" width="320" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-2158386686166556184?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/2158386686166556184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/add-guidgen-to-visual-studio-2010.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2158386686166556184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2158386686166556184'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/add-guidgen-to-visual-studio-2010.html' title='Add GUIDGEN to Visual Studio 2010'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Z95_r_R47pg/TUbWkQgEH_I/AAAAAAAAAHI/n7eq5javkts/s72-c/Picture+3.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6384693378450777506</id><published>2011-01-25T14:23:00.002Z</published><updated>2011-06-02T09:29:36.210Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='My Site'/><title type='text'>Customising My Site in MOSS 2010</title><content type='html'>http://blogs.msdn.com/b/spsocial/archive/2010/03/30/customizing-my-sites-in-microsoft-sharepoint-2010.aspx&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-6384693378450777506?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/6384693378450777506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/customising-my-site-in-moss-2010.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6384693378450777506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6384693378450777506'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/customising-my-site-in-moss-2010.html' title='Customising My Site in MOSS 2010'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-4498946000693133642</id><published>2011-01-21T17:37:00.000Z</published><updated>2011-06-02T09:29:36.211Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><title type='text'>Viewing Documents Checked Out to Me</title><content type='html'>To view documents that are checked out to you navigate to the page: /_layouts/sitemanager.aspx and select the view 'Checked out to me'&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Z95_r_R47pg/TTnD65MtMZI/AAAAAAAAAHE/GFo7ny5SAnc/s1600/Screen-shot-2011-01-21-at-17.30.41.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="185" src="http://2.bp.blogspot.com/_Z95_r_R47pg/TTnD65MtMZI/AAAAAAAAAHE/GFo7ny5SAnc/s400/Screen-shot-2011-01-21-at-17.30.41.gif" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-4498946000693133642?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/4498946000693133642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/viewing-documents-checked-out-to-me.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4498946000693133642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4498946000693133642'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/viewing-documents-checked-out-to-me.html' title='Viewing Documents Checked Out to Me'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Z95_r_R47pg/TTnD65MtMZI/AAAAAAAAAHE/GFo7ny5SAnc/s72-c/Screen-shot-2011-01-21-at-17.30.41.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-3990598324953376578</id><published>2011-01-16T15:33:00.001Z</published><updated>2011-06-02T09:29:36.212Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Parts'/><title type='text'>Open a Closed Web Part</title><content type='html'>To open a 'closed' web part:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open the page in 'Edit' mode.&lt;/li&gt;&lt;li&gt;Click on a zone 'Add a web part' link.&lt;/li&gt;&lt;li&gt;In the 'Categories' list select 'Closed Web Parts'&lt;/li&gt;&lt;li&gt;Add the web part to the page.&lt;/li&gt;&lt;/ol&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Z95_r_R47pg/TTMPxKG12uI/AAAAAAAAAHA/C_oI72-X5Lk/s1600/Screen-shot-2011-01-16-at-15.29.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="283" src="http://2.bp.blogspot.com/_Z95_r_R47pg/TTMPxKG12uI/AAAAAAAAAHA/C_oI72-X5Lk/s320/Screen-shot-2011-01-16-at-15.29.gif" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-3990598324953376578?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/3990598324953376578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/open-closed-web-part.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/3990598324953376578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/3990598324953376578'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/open-closed-web-part.html' title='Open a Closed Web Part'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Z95_r_R47pg/TTMPxKG12uI/AAAAAAAAAHA/C_oI72-X5Lk/s72-c/Screen-shot-2011-01-16-at-15.29.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6953362880692325504</id><published>2011-01-07T16:37:00.003Z</published><updated>2011-06-02T09:29:36.213Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lists'/><category scheme='http://www.blogger.com/atom/ns#' term='Branding'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='CSS'/><title type='text'>Hide list web part column headers</title><content type='html'>To hide list column headers add the following CSS to a hidden content editor web part on the page:&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;&amp;lt;style&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;.ms-viewheadertr { display: none;}&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;&amp;lt;/style&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="container"&gt;&lt;div class="line number1 index0 alt2"&gt;&lt;code class="css plain"&gt;&lt;style&gt;&lt;/code&gt;&lt;/div&gt;&lt;div class="line number2 index1 alt1"&gt;&lt;code class="css plain"&gt;.ms-viewheadertr { &lt;/code&gt;&lt;code class="css keyword"&gt;display&lt;/code&gt;&lt;code class="css plain"&gt;: &lt;/code&gt;&lt;code class="css value"&gt;none&lt;/code&gt;&lt;code class="css plain"&gt;;}&lt;/code&gt;&lt;/div&gt;&lt;div class="line number3 index2 alt2"&gt;&lt;code class="css plain"&gt;&lt;/style&gt;&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-6953362880692325504?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/6953362880692325504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/hide-list-column-headers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6953362880692325504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6953362880692325504'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/hide-list-column-headers.html' title='Hide list web part column headers'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-8476505024296426375</id><published>2011-01-07T10:46:00.005Z</published><updated>2011-06-02T09:29:36.214Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Branding'/><category scheme='http://www.blogger.com/atom/ns#' term='Navigation'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Designer'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Part Pages'/><title type='text'>Creating Web Part Pages with a Quick Launch</title><content type='html'>Web Part Pages in Team Sites by default do not show the Quick Launch left navigation. Basically the panel is hidden by a CSS style written into the page &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;: &lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;body #s4-leftpanel {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;display:none;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;.s4-ca {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;margin-left:0px;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;style&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and two placeholders in the &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;, which override the masterpage placeholders:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"&amp;gt;&amp;lt;/asp:Content&lt;/span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;lt;asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"&amp;gt;&amp;lt;/asp:Content&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To show the Quick Launch open the page in SharePoint Designer and remove the style and the placeholders.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-8476505024296426375?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/8476505024296426375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/creating-web-part-pages-with-quick.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8476505024296426375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8476505024296426375'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/creating-web-part-pages-with-quick.html' title='Creating Web Part Pages with a Quick Launch'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-8735851628983457213</id><published>2011-01-06T16:31:00.000Z</published><updated>2011-01-06T16:31:22.789Z</updated><title type='text'>Warning: The HTML source you entered might have been modified</title><content type='html'>In Content editor Web Parts editing the HTML source is now accessed via "Edit HTML" in the ribbon - this replaces the old "Source Editor” option.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Z95_r_R47pg/TSXsnJeo3YI/AAAAAAAAAG4/VOF1EHs_1Hk/s1600/Screen+shot+2011-01-06+at+16.23.25.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Z95_r_R47pg/TSXsnJeo3YI/AAAAAAAAAG4/VOF1EHs_1Hk/s1600/Screen+shot+2011-01-06+at+16.23.25.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The following warning will occur if you insert code that SharePoint doesn't like: &lt;b&gt;Warning: The HTML source you entered might have been modified.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;To get around this problem one solution is to put your code into a text file in the Site Assets document library. &lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Z95_r_R47pg/TSXuSER7UaI/AAAAAAAAAG8/9UY_mY9i1yE/s1600/Screen+shot+2011-01-06+at+16.30.31.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Z95_r_R47pg/TSXuSER7UaI/AAAAAAAAAG8/9UY_mY9i1yE/s1600/Screen+shot+2011-01-06+at+16.30.31.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-8735851628983457213?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/8735851628983457213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/warning-html-source-you-entered-might.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8735851628983457213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8735851628983457213'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/warning-html-source-you-entered-might.html' title='Warning: The HTML source you entered might have been modified'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Z95_r_R47pg/TSXsnJeo3YI/AAAAAAAAAG4/VOF1EHs_1Hk/s72-c/Screen+shot+2011-01-06+at+16.23.25.png' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-4829327930186016586</id><published>2011-01-05T22:45:00.006Z</published><updated>2011-06-02T09:29:36.215Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Wikis'/><category scheme='http://www.blogger.com/atom/ns#' term='Navigation'/><category scheme='http://www.blogger.com/atom/ns#' term='Features'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Part Pages'/><title type='text'>MOSS 2010 Team Site Pages</title><content type='html'>&lt;span style="font-weight: bold;"&gt;First impressions of MOSS 2010 Team Sites&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;MOSS 2010 Team sites are slightly different from their 2007 counterparts in that they are based more on Wiki pages, meaning that you can mix content and web parts within a rich text area.&lt;br /&gt;&lt;br /&gt;By default when a team site is created it contains a default.aspx file (located as before in the site root directory) and a home.aspx file. The home.aspx is now the site homepage and is located in a document library called "Site Pages" (/sitepages/home.aspx), generated by a feature dependency of the "WikiPageHomePage" feature called "WebPageLibrary" (see: 14\TEMPLATE\FEATURES).&lt;br /&gt;&lt;br /&gt;New pages created using the "Site Actions / New Page" button by default will create new Wiki pages, which will reside in the "Site Pages" document library. If the "Site Pages" document library does not exist you will be prompted to create one before new pages can be created.&lt;br /&gt;&lt;br /&gt;New pages created via "View All Site Content / Create" or "View All Site Content / Pages / ... ribbon ... New Page" allow editors the choice to create either  a basic page or a web part page. Selecting a web part page prompts choices of page layouts (one col, two col etc) and available document libraries (Pages, Site Pages, Documents, Custom etc). Note that these Web part pages do not display the Quick Navigation panel on the left side of the website, which if integral to your site navigation / heirachy display will pose some important decision making with regards whether or not to activate publishing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-4829327930186016586?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/4829327930186016586/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2011/01/moss-2010-team-sites.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4829327930186016586'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4829327930186016586'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2011/01/moss-2010-team-sites.html' title='MOSS 2010 Team Site Pages'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6691577031157939048</id><published>2010-09-08T09:13:00.006Z</published><updated>2010-09-08T13:13:08.537Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Art Forms'/><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Where's Hannah? Autumn 2010.</title><content type='html'>&lt;p&gt;&lt;a href="http://www.drivingdotty.com/"&gt;&lt;/a&gt;I am currently working on a new creative project in the West of England - visit my &lt;span style="font-style: italic;"&gt;Art Forms&lt;/span&gt; website for more details: &lt;a href="http://www.hannahscott.com/"&gt;http://www.hannahscott.com &lt;/a&gt;&lt;br /&gt;&lt;/p&gt;If you want to get in touch regarding SharePoint or web design please visit my professional website, which includes a full client list and examples of previous work: &lt;a href="http://outofoffice.bytelab.co.uk/"&gt;http://www.bytelab.co.uk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Last summer I drove 10,000 miles from Hyde Park, London to Ulaanbaatar, Mongolia. For more information and to find out what happened visit my website: &lt;a href="http://www.drivingdotty.com/"&gt;http://www.drivingdotty.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After Mongolia I travelled overland through China, Tibet, SE Asia, India, Nepal &amp;amp; the US. Check out my travel blog here: &lt;a href="http://outofoffice.bytelab.co.uk/"&gt;http://outofoffice.bytelab.co.uk&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-6691577031157939048?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/6691577031157939048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2010/09/wheres-hannah-autumn-2010.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6691577031157939048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6691577031157939048'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2010/09/wheres-hannah-autumn-2010.html' title='Where&apos;s Hannah? Autumn 2010.'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-5492476211334139599</id><published>2009-07-10T14:00:00.003Z</published><updated>2010-08-03T17:33:25.833Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Pub Pics'/><title type='text'>Out Of Office</title><content type='html'>&lt;p&gt;On the 18th July 2009 I set off driving 10,000 miles from Hyde Park, London to Ulaanbaatar, Mongolia.  For more information and what happened visit my website &lt;a href="http://www.drivingdotty.com/"&gt;www.drivingdotty.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I will be out of office, travelling  until August 2010 so appologies for the lack of new posts but if you are inclined check out my travel blog here: &lt;a href="http://outofoffice.bytelab.co.uk/"&gt;http://outofoffice.bytelab.co.uk&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;And I do also have a professional website with full client list and examples of past work.  If you want to get in touch this is probably the easiest way to find me:&lt;a href="http://outofoffice.bytelab.co.uk/"&gt; http://www.bytelab.co.uk&lt;br /&gt;&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-5492476211334139599?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/5492476211334139599/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2010/02/out-of-office.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5492476211334139599'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5492476211334139599'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2010/02/out-of-office.html' title='Out Of Office'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-986085253255605831</id><published>2009-07-01T15:54:00.002Z</published><updated>2009-07-01T15:59:40.232Z</updated><title type='text'>MOSS July Infrastructure Update</title><content type='html'>&lt;p&gt;&lt;a href="http://sharepointnotes.wordpress.com/2009/01/10/updating-from-moss-sp1-to-the-infrastructure-update/"&gt;http://sharepointnotes.wordpress.com/2009/01/10/updating-from-moss-sp1-to-the-infrastructure-update/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;ol&gt;&lt;li&gt;Download the infrastructure updates for both WSS and MOSS &lt;ul&gt;&lt;li&gt;WSS: &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=256CE3C3-6A42-4953-8E1B-E0BF27FD465B&amp;amp;displaylang=en" target="_blank"&gt;x86&lt;/a&gt; – &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3A74E566-CB4A-4DB9-851C-E3FBBE5E6D6E&amp;amp;displaylang=en" target="_blank"&gt;x64&lt;/a&gt;&lt;/li&gt;&lt;li&gt;MOSS: &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=3811C371-0E83-47C8-976B-0B7F26A3B3C4&amp;amp;displaylang=en" target="_blank"&gt;x86&lt;/a&gt; – &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e4f31ab-af25-47df-9bf1-423e248fa6fc&amp;amp;displaylang=en" target="_blank"&gt;x64&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Install the WSS infrastructure update on all the servers in the farm. Do not run the Wizard at the end&lt;/li&gt;&lt;li&gt;Install the MOSS infrastructure update on all servers in the farm. Again, do not run the Wizard at the end&lt;/li&gt;&lt;li&gt;Run the Wizard on the server hosting the Central Administration Web Site&lt;/li&gt;&lt;li&gt;Run the Wizard on the remaining servers in the farm one at a time&lt;/li&gt;&lt;li&gt;Once all the servers are upgraded, verify in Central Administration that the version number is bumbed to 12.0.0.6318&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-986085253255605831?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/986085253255605831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/07/moss-july-infrastructure-update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/986085253255605831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/986085253255605831'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/07/moss-july-infrastructure-update.html' title='MOSS July Infrastructure Update'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6514370111694061858</id><published>2009-04-01T16:14:00.003Z</published><updated>2009-04-01T17:00:51.945Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Master Pages'/><category scheme='http://www.blogger.com/atom/ns#' term='Performance Point Server'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Connecting PPS to MOSS Sub Site Master Pages</title><content type='html'>When you deploy a dashboard from Performance Point Server you have the option of choosing which master page you want to use.   By default you will see all the master pages in the SharePoint master page gallery of the site collection you are publishing too.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SdOdc94FnSI/AAAAAAAAADI/BWhAtcejWGA/s1600-h/pps_dd_deploy.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 227px;" src="http://2.bp.blogspot.com/_Z95_r_R47pg/SdOdc94FnSI/AAAAAAAAADI/BWhAtcejWGA/s320/pps_dd_deploy.gif" alt="" id="BLOGGER_PHOTO_ID_5319768705826397474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you are in a subsite of your portal unless you have copied your custom master pages to the site collection master page gallery you will only see the default.master in the PPS dropdown since this is the only master page in the subsite master page gallery.&lt;br /&gt;&lt;br /&gt;For example:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=37820012&amp;amp;postID=6514370111694061858#"&gt;http://moss/_catalogs/masterpage/Forms/AllItems.aspx&lt;/a&gt; contains all portal master pages&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=37820012&amp;amp;postID=6514370111694061858#"&gt;http://moss/mysubsite/_catalogs/masterpage/Forms/AllItems.aspx&lt;/a&gt; contains only default.master&lt;/li&gt;&lt;/ul&gt;To solve this simply copy your custom master page to the subsite master page gallery.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-6514370111694061858?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/6514370111694061858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/04/connecting-pps-to-moss-sub-site-master.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6514370111694061858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6514370111694061858'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/04/connecting-pps-to-moss-sub-site-master.html' title='Connecting PPS to MOSS Sub Site Master Pages'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Z95_r_R47pg/SdOdc94FnSI/AAAAAAAAADI/BWhAtcejWGA/s72-c/pps_dd_deploy.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-2550539661623008970</id><published>2009-03-31T16:25:00.010Z</published><updated>2009-04-01T10:06:40.790Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ping'/><title type='text'>Ping Commands!</title><content type='html'>&lt;p&gt;This comes from: &lt;a href="http://www.computerhope.com/pinghlp.htm"&gt;http://www.computerhope.com/pinghlp.htm&lt;/a&gt;&lt;/p&gt;&lt;p style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;ping&lt;/span&gt;&lt;/p&gt;&lt;p&gt;[-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]&lt;br /&gt;[-r count] [-s count] [[-j host-list] | [-k host-list]]&lt;br /&gt;[-w timeout] destination-list&lt;/p&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Options&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;-t&lt;/strong&gt;  - Pings the specified host until stopped.&lt;/p&gt;&lt;p&gt;To see statistics and continue - type Control-Break;&lt;br /&gt;To stop - type Control-C.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;-a&lt;/strong&gt; - Resolve addresses to hostnames.&lt;br /&gt;&lt;strong&gt;-n&lt;/strong&gt; - countNumber of echo requests to send.&lt;br /&gt;&lt;strong&gt;-l&lt;/strong&gt; - sizeSend buffer size.&lt;br /&gt;&lt;strong&gt;-f &lt;/strong&gt;- Set Don't Fragment flag in packet.&lt;br /&gt;&lt;strong&gt;-i TTL&lt;/strong&gt; Time To Live.&lt;br /&gt;&lt;strong&gt;-v TOS&lt;/strong&gt; - Type Of Service.&lt;br /&gt;&lt;strong&gt;-r count&lt;/strong&gt; - Record route for count hops&lt;br /&gt;&lt;strong&gt;-s count&lt;/strong&gt; - Timestamp for count hops.&lt;br /&gt;&lt;strong&gt;-j host-list&lt;/strong&gt; - Loose source route along host-list.&lt;br /&gt;&lt;strong&gt;-k host-list&lt;/strong&gt; - Strict source route along host-list.&lt;br /&gt;&lt;strong&gt;-w timeout&lt;/strong&gt; - Timeout in milliseconds to wait for each reply.&lt;br /&gt;&lt;/p&gt;&lt;p class="nb"&gt;&lt;a name="04" id="04"&gt;&lt;/a&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Examples&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ping localhost&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Pings the local host, this will allow               you to see if the computer is able to send information out and receive the information               back. Note that this does not send information over a network but may allow you to see               if the card is being seen.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ping &lt;i&gt;xxx&lt;/i&gt;.&lt;i&gt;xxx&lt;/i&gt;.&lt;i&gt;xxx&lt;/i&gt;.&lt;i&gt;xxx&lt;/i&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Allows you to ping another               computer where the &lt;i&gt;x&lt;/i&gt;'s are located are where you would place the IP address of the               computer you are attempting to ping. If this is not able to complete this should relay               back an unsuccessful message which could be an indication of cable issues, network card               issues, hub issue, etc.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ping computerhope.com&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;PING computerhope.com (204.228.150.3) 56(84)      bytes of data.&lt;br /&gt;64 bytes from www.computerhope.com (204.228.150.3): icmp_seq=1      ttl=63 time=0.267 ms&lt;br /&gt;&lt;br /&gt;--- computerhope.com ping statistics ---&lt;br /&gt;1 packets transmitted, 1 received, 0% packet loss, time 0ms&lt;br /&gt;rtt min/avg/max/mdev = 0.267/0.267/0.267/0.000 ms&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-2550539661623008970?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/2550539661623008970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/03/ping-commands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2550539661623008970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2550539661623008970'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/03/ping-commands.html' title='Ping Commands!'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-2538958605306060034</id><published>2009-03-27T14:02:00.006Z</published><updated>2009-03-27T14:14:31.114Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Project Server 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Adding users to Project Server PWA site</title><content type='html'>To grant users access to the PS PWA site they need to be added via the Server Settings / Manage Users page in the PWA site. Simply adding them through Site Settings / Advanced Permissions will not work.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Z95_r_R47pg/SczfFlHLGKI/AAAAAAAAACQ/e3DD8h4AZrs/s1600-h/ps_manageusers.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://4.bp.blogspot.com/_Z95_r_R47pg/SczfFlHLGKI/AAAAAAAAACQ/e3DD8h4AZrs/s320/ps_manageusers.gif" alt="" id="BLOGGER_PHOTO_ID_5317870546972252322" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Z95_r_R47pg/SczfFkQyuLI/AAAAAAAAACY/vJhsnAQX6yo/s1600-h/ps_manageuserslist.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://3.bp.blogspot.com/_Z95_r_R47pg/SczfFkQyuLI/AAAAAAAAACY/vJhsnAQX6yo/s320/ps_manageuserslist.gif" alt="" id="BLOGGER_PHOTO_ID_5317870546744162482" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SczdC0g4RZI/AAAAAAAAACI/jiM3CjUQH2A/s1600-h/ps_manageuserslist.gif"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-2538958605306060034?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/2538958605306060034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/03/adding-users-to-project-server-pwa-site.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2538958605306060034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/2538958605306060034'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/03/adding-users-to-project-server-pwa-site.html' title='Adding users to Project Server PWA site'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_Z95_r_R47pg/SczfFlHLGKI/AAAAAAAAACQ/e3DD8h4AZrs/s72-c/ps_manageusers.gif' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-3574620942057550074</id><published>2009-03-27T12:08:00.009Z</published><updated>2009-03-27T14:09:38.560Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Central Administration'/><category scheme='http://www.blogger.com/atom/ns#' term='Project Server 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Installing Project Server 2007 on an existing MOSS farm with Kerberos enabled</title><content type='html'>I have a medium server farm running MOSS 2007. There are three servers (2 WFE, 1 Index &amp;amp; 1 SQL).&lt;br /&gt;&lt;br /&gt;Note - Project Server cannot be uninstalled from a joint MOSS / PS installation&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;To install Project Server 2007:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Copy Project Server installer on to each server - i put them in C:\Temp&lt;/li&gt;&lt;li&gt;Quiesce the MOSS farm via Central Administration / Operations &lt;/li&gt;&lt;li&gt;Run the PS install files on each server in the farm&lt;/li&gt;&lt;li&gt;Unquiesce the farm&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Run the MOSS configuration wizard on each server one by one&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;Start the Project Server Service:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open Central Administration and select the Operations tab&lt;/li&gt;&lt;li&gt;Select Services on Server&lt;/li&gt;&lt;li&gt;Select the server you want to run the Project Server service&lt;/li&gt;&lt;li&gt;If the Project Server Service is not dispayed change the server role to Custom&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Z95_r_R47pg/SczSJSq47mI/AAAAAAAAAB4/1a6EMpPK7s4/s1600-h/ps_psservice.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://4.bp.blogspot.com/_Z95_r_R47pg/SczSJSq47mI/AAAAAAAAAB4/1a6EMpPK7s4/s320/ps_psservice.gif" alt="" id="BLOGGER_PHOTO_ID_5317856317090098786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Start the Project Server service&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;Provision the Project Server site:&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Open Central Administration and navigate to Shared Services Administration&lt;/li&gt;&lt;li&gt;Open the SSP that on to which you want to provsion Project Web Access (PWA)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SczRL4h4OuI/AAAAAAAAABo/ngqo_uHRWI4/s1600-h/ps_ssppwa.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://2.bp.blogspot.com/_Z95_r_R47pg/SczRL4h4OuI/AAAAAAAAABo/ngqo_uHRWI4/s320/ps_ssppwa.gif" alt="" id="BLOGGER_PHOTO_ID_5317855262100962018" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;On the SSP homepage select Project Web Access Sites&lt;/li&gt;&lt;li&gt;Select Create Project Web Access Site&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SczQyK6XdFI/AAAAAAAAABg/a1bj9jLHfF4/s1600-h/ps_createpwas.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://2.bp.blogspot.com/_Z95_r_R47pg/SczQyK6XdFI/AAAAAAAAABg/a1bj9jLHfF4/s320/ps_createpwas.gif" alt="" id="BLOGGER_PHOTO_ID_5317854820358911058" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select the MOSS web application to host the PWA&lt;/li&gt;&lt;li&gt;Assign a PWA path for example: projectserver&lt;/li&gt;&lt;li&gt;Assign the Administrator Account for the PS instance&lt;/li&gt;&lt;li&gt;Assign the primary database SQL server&lt;/li&gt;&lt;li&gt;Name the four PS databases&lt;/li&gt;&lt;li&gt;Click OK&lt;/li&gt;&lt;li&gt;When provisioning is complete Provisioned will appear in the status column - to refresh the status click Refresh Status&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Z95_r_R47pg/SczRgrsGFQI/AAAAAAAAABw/-zaQPZEP9OM/s1600-h/ps_pwaprovisioned.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 222px;" src="http://3.bp.blogspot.com/_Z95_r_R47pg/SczRgrsGFQI/AAAAAAAAABw/-zaQPZEP9OM/s320/ps_pwaprovisioned.gif" alt="" id="BLOGGER_PHOTO_ID_5317855619431404802" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Z95_r_R47pg/SczRgrsGFQI/AAAAAAAAABw/-zaQPZEP9OM/s1600-h/ps_pwaprovisioned.gif"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;To enable access you must ensure that you have registered the server SPNs for Kerberos delegation and for the web application process accounts. Until you do this you will get an access denied error when you try to access the PWA site.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-3574620942057550074?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/3574620942057550074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/03/installing-project-server-2007-on.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/3574620942057550074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/3574620942057550074'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/03/installing-project-server-2007-on.html' title='Installing Project Server 2007 on an existing MOSS farm with Kerberos enabled'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_Z95_r_R47pg/SczSJSq47mI/AAAAAAAAAB4/1a6EMpPK7s4/s72-c/ps_psservice.gif' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6424464966760739859</id><published>2009-02-12T14:48:00.003Z</published><updated>2009-02-12T14:50:54.870Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Branding'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Designer'/><category scheme='http://www.blogger.com/atom/ns#' term='My Site'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='Themes'/><title type='text'>A theme with the name "CustomMySite 1011" and version  already exists on the server.</title><content type='html'>You receive this error when trying to apply a custom theme to your SharePoint site:&lt;br /&gt;&lt;br /&gt;"A theme with the name "CustomMySite 1011" and version  already exists on the server. "&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open your site in SharePoint Designer.&lt;/li&gt;&lt;li&gt;Expand _themes and delete the CustomMySite theme folder&lt;/li&gt;&lt;li&gt;Re-apply the custom theme to your site.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-6424464966760739859?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/6424464966760739859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/02/theme-with-name-custommysite-1011-and.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6424464966760739859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/6424464966760739859'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/02/theme-with-name-custommysite-1011-and.html' title='A theme with the name &quot;CustomMySite 1011&quot; and version  already exists on the server.'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-4652624166993494861</id><published>2009-01-15T11:41:00.003Z</published><updated>2009-01-15T11:43:02.014Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Anonymous Access'/><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Central Administration'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Enabling MOSS Anonymous Access</title><content type='html'>&lt;ol&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From Central Administration &gt; Application Management &gt; Application Security &gt; Authentication Providers, select a Web application and the zone you want to modify. This is usually default.&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;In the middle of the page, check Enable Anonymous Access and choose Save&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;All site collections in that Web application can now have anonymous access enabled.&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;Go to a site collection in the Web application you just enabled anonymous access for&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From Site Actions &gt; Site Settings, open Advanced Permissions&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From the Settings drop-down menu, select Anonymous Access&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;For this example, enable anonymous access for Lists and Libraries and click OK&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;Browse to any document library in this site collection&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From the Settings drop-down menu, select Document Library Settings&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;In the Permissions and Management column, select Permissions for this document library&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From the Actions menu, select Edit Permissions to break inheritance&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;From the newly appeared Settings drop-down menu, select Anonymous Access&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p style="margin: 0in 0in 0pt;"&gt;Check View Items and click OK.&lt;/p&gt; &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-4652624166993494861?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/4652624166993494861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/01/enabling-anonymous-access.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4652624166993494861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/4652624166993494861'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/01/enabling-anonymous-access.html' title='Enabling MOSS Anonymous Access'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-8430954544274557020</id><published>2009-01-12T15:20:00.014Z</published><updated>2009-01-12T17:03:32.955Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='STSADM'/><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Application Events'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Issues after restoring MOSS to a previous VM snapshot</title><content type='html'>We restored our VM MOSS farm this morning from a snapshot taken a couple of months ago. Various issues occurred. Please note i am still working through some of the errors and will update this post as i find the answers.&lt;ol&gt;&lt;li&gt;I could no longer login to the server because the snapshot was older than 30 days - the computer account for the server had expired and so needed to be reset and reconnected to the domain. &lt;a href="http://communities.vmware.com/blogs/gabrielmaciel/2008/12/03/ad-domain-login-fails-when-the-computers-snapshot-is-reverted-to-a-point-in-the-past"&gt;See this blog for steps to fix this&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The MOSS environment although appearing correct in Central Administration was not configured in IIS.  The Central Administration site was the only site appearing in IIS even though all the web applications were still there.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;To fix this:&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Delete the old web application using Central Administration.&lt;/li&gt;&lt;li&gt;Delete all the SSP web apps &amp;amp; DBs, apart from the default SSP which cannot be deleted.&lt;/li&gt;&lt;li&gt;Recreate the web applications with Temp DB names.&lt;/li&gt;&lt;li&gt;Recreate the SSPs with new DBs.&lt;/li&gt;&lt;li&gt;Change the default SSP to one of the newly created SSPs, then delete the original default SSP inc DB, then recreate it's web app and set back to the default updating any associations as required.&lt;br /&gt;&lt;br /&gt;At this point I ran in to some issues recreating the SSP with the following errors. First of all the SSP failed to provision with the error:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;Provisioning failed: A transport-level error has occurred when sending the request to the server.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Looking in the Event Log i found the following related errors:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-weight: bold;"&gt;Event ID 5554&lt;/span&gt;&lt;br /&gt;Failure during sweep synch.  Exception was A transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Event ID 7888&lt;/span&gt;&lt;br /&gt;A runtime exception was detected. Details follow.&lt;br /&gt;Message: A transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Event ID 5586&lt;/span&gt;&lt;br /&gt;Unknown SQL Exception 10054 occured. Additional error information from SQL Server is included below.&lt;br /&gt;&lt;br /&gt;A transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;br /&gt;&lt;/span&gt;&lt;a href="http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread/0671c03b-5488-4be4-bc5a-579849fa0950/"&gt;http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread/0671c03b-5488-4be4-bc5a-579849fa0950&lt;br /&gt;&lt;/a&gt;Reboot the server and kill any remaining connections (delete the Admin accounts from local users &amp;amp; groups, reboot, add the Admin accounts back in).&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Also in the event log were the following errors:&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:courier new;font-size:85%;"  &gt;&lt;span style="font-weight: bold;"&gt;Event ID 10016&lt;/span&gt;&lt;br /&gt;The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;{3D42CCB1-4665-4620-92A3-478F47389230}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;br /&gt;&lt;/span&gt;&lt;a href="http://sharemypoint.wordpress.com/2007/12/18/error-event-id-6398-and-6482-about-security-rights-of-osearch-service/"&gt;&lt;span&gt;http://sharemypoint.wordpress.com/2007/12/18/error-event-id-6398-and-6482-about-security-rights-of-osearch-service/&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Add the WSS_WPG, WSS_ADMIN_WPG, Search &amp;amp; Admin accounts to the OSearch DCOM Servic&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;e&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-weight: bold;"&gt;Event ID 6141&lt;/span&gt;&lt;br /&gt;The site /ssp/admin could not be created.  The following exception occured: This page has encountered a critical error. Contact your system administrator if this problem persists.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-weight: bold;"&gt;Event ID 6610&lt;/span&gt;&lt;br /&gt;Safe mode did not start successfully. This page has encountered a critical error. Contact your system administrator if this problem persists.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Event ID 5629&lt;/span&gt;&lt;br /&gt;Failed to load the SafeControl assembly paths for web.config. C:\Inetpub\wwwroot\wss\VirtualDirectories\ssp180&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Error importing WebPart. Assembly Microsoft.Office.Server.Search, Version=OAssemblyAssemblyVer, Culture=neutral, PublicKeyToken=OAssemblyPublicKey, TypeName. Microsoft.Office.Server.Search.WebControls.ActiveCrawls&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol&gt;&lt;li&gt;I deleted the SSP web apps again.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Stop the search query &amp;amp; index services.&lt;/li&gt;&lt;li&gt;Start the search query &amp;amp; index services.&lt;/li&gt;&lt;li&gt;Restart IIS.&lt;/li&gt;&lt;li&gt;Recreate the SSP web app.&lt;/li&gt;&lt;li&gt;Recreate the SSP &amp;amp; set back to default with any associations required.&lt;br /&gt;&lt;br /&gt;Success - the SSP provisioned correctly.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol&gt;&lt;li&gt;Restore the DB from by opening the Content Database page in Central Administration. Delete the Temp DB then in STSADM associate the original DB:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;cd C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;stsadm.exe -o addcontentdb -url http://portal -databasename MOSS_MyDB_WSS_Content -databaseserver MyServer &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;If you receive the error 'An unexpected error has occured' open the web.config and update as follows:&lt;br /&gt;&lt;a href="http://blog.thekid.me.uk/archive/2007/02/15/a-solution-to-quot-an-unexpected-error-has-occurred-quot-in-wss-v3.aspx"&gt;http://blog.thekid.me.uk/archive/2007/02/15/a-solution-to-quot-an-unexpected-error-has-occurred-quot-in-wss-v3.aspx&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;ol&gt;&lt;li&gt;Change &amp;lt;SafeMode MaxControls=“200“ CallStack=“false“ to &amp;lt;SafeMode MaxControls=“200“ CallStack=“true“…&amp;gt;&lt;/li&gt;&lt;li&gt;Set custom errors to 'Off' &amp;lt;customErrors mode=“Off“/&amp;gt;&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-8430954544274557020?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/8430954544274557020/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/01/issues-after-restoring-moss-to-previous.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8430954544274557020'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8430954544274557020'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/01/issues-after-restoring-moss-to-previous.html' title='Issues after restoring MOSS to a previous VM snapshot'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-9140244990799989413</id><published>2009-01-09T17:00:00.003Z</published><updated>2009-01-09T17:04:20.766Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Central Administration'/><category scheme='http://www.blogger.com/atom/ns#' term='My Site'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Adding New SSP Administrators</title><content type='html'>&lt;a href="http://blogs.msdn.com/sgoodyear/archive/2007/06/20/adding-new-ssp-administrators.aspx"&gt;http://blogs.msdn.com/sgoodyear/archive/2007/06/20/adding-new-ssp-administrators.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;When you add a new user account to the SSP site, even if you grant them Full Control permissions or add them as a Site Collection Administrator, initially they will experience access denied error messages when they click on any of the following links on the SSP Admin page:&lt;br /&gt;&lt;br /&gt;    * User profiles and properties&lt;br /&gt;    * Profile services policies&lt;br /&gt;    * My Site settings&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;Personalization services permissions&lt;/span&gt;&lt;br /&gt;    * Audiences&lt;br /&gt;    * Import application definition&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;Business Data Catalog permissions &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;These sections need to have permissions explicitly set. Initially, the setup account will have full access to the SSP, so use that account to grant rights to new SSP administrators you wish to delegate SSP administrative duties to.&lt;br /&gt;&lt;br /&gt;Notice the items highlighted in bold in the list above. These are where you assign the remaining SSP permissions. Adding new SSP administrators to the "Personalization services permissions" section and granting appropriate rights will grant rights related to the first five links in the list above. Repeating the process in the "Business Data Catalog permissions" section will grant rights related to the last two links.&lt;br /&gt;&lt;br /&gt;At this point, the new SSP administrator has all the appropriate access permissions they need to administrate the SSP.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-9140244990799989413?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/9140244990799989413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2009/01/adding-new-ssp-administrators.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/9140244990799989413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/9140244990799989413'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2009/01/adding-new-ssp-administrators.html' title='Adding New SSP Administrators'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-5030053810838916924</id><published>2008-11-10T14:08:00.005Z</published><updated>2008-11-10T14:14:58.588Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Application Events'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Event ID 0 - The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be found</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;The Problem:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;Event ID 0&lt;br /&gt;&lt;br /&gt;The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Unable to open shim database version registry key - v2.0.50727.00000.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://code.msdn.microsoft.com/KB918642"&gt;KB918642&lt;/a&gt; - A .NET 2.0 application may require Read/Write permission to a registry&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Download the hotfix and apply to the server displaying the error - in my case this was the Index server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-5030053810838916924?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/5030053810838916924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2008/11/event-id-0-description-for-event-id-0.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5030053810838916924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5030053810838916924'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2008/11/event-id-0-description-for-event-id-0.html' title='Event ID 0 - The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be found'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-8472080074630967248</id><published>2008-11-10T13:52:00.008Z</published><updated>2008-11-10T14:06:55.794Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Central Administration'/><category scheme='http://www.blogger.com/atom/ns#' term='Application Events'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Event ID 7888</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;The Problem:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I found the following error on my Index Server:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family:courier new;"&gt;Event ID 7888&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;A runtime exception was detected. Details follow.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Message: Access Denied! Only site admin can access Data Source object from user profile DB.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Techinal Details:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;System.UnauthorizedAccessException: Access Denied! Only site admin can access Data Source object from user profile DB.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.SRPSite.&lt;br /&gt;AdminCheck(String message)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.DataSource.&lt;br /&gt;_LoadDataSourceDef(IDataRecord rec)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.DataSource.&lt;br /&gt;_LoadDataSourceDef(String strDSName)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.&lt;br /&gt;DataSource..ctor(SRPSite site, Boolean fAllowEveryoneRead)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.&lt;br /&gt;DataSource..ctor(SRPSite site)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.&lt;br /&gt;UserProfileConfigManager.GetDataSource()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;at Microsoft.Office.Server.UserProfiles.&lt;br /&gt;BDCConnector.RefreshConfiguration(String sspName)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Open your SSP&lt;/span&gt; and navigate to Personalization Services Permissions.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select Add User and add your SSP process account  with Manage User Profiles permissions.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Z95_r_R47pg/SRg-sEbSjWI/AAAAAAAAABA/i_R5dm6Eii0/s1600-h/SSPEventId7888.jpg"&gt;&lt;br /&gt;&lt;br /&gt;&lt;img style="cursor: pointer; width: 320px; height: 238px;" src="http://1.bp.blogspot.com/_Z95_r_R47pg/SRg-sEbSjWI/AAAAAAAAABA/i_R5dm6Eii0/s320/SSPEventId7888.jpg" alt="" id="BLOGGER_PHOTO_ID_5267028691033165154" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-8472080074630967248?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/8472080074630967248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2008/11/event-id-7888.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8472080074630967248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8472080074630967248'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2008/11/event-id-7888.html' title='Event ID 7888'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Z95_r_R47pg/SRg-sEbSjWI/AAAAAAAAABA/i_R5dm6Eii0/s72-c/SSPEventId7888.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-8713846706419410508</id><published>2008-11-10T12:00:00.010Z</published><updated>2008-11-10T12:24:54.055Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint Search'/><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Crawl Scheduling Error - Access Denied</title><content type='html'>When you set up your SSPs one of the things you will come across is Crawl Scheduling. This comes under Search Settings and allows you to configure Incremental Crawls and Full Crawls to the frequency you would like. For example, Full crawl once a day, Incremental Crawl every 5 minutes of each day.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;The problem&lt;/span&gt;&lt;span style="font-size:130%;"&gt;:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I received an error whilst building a new farm this week when trying to set the Crawl Schedules.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SRgkZvqJI_I/AAAAAAAAAAo/jB6Ub7TVz4c/s1600-h/SSPCrawlSchedule.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 294px;" src="http://2.bp.blogspot.com/_Z95_r_R47pg/SRgkZvqJI_I/AAAAAAAAAAo/jB6Ub7TVz4c/s320/SSPCrawlSchedule.jpg" alt="" id="BLOGGER_PHOTO_ID_5266999788918350834" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;When I hit Ok I received the error:&lt;br /&gt;&lt;/div&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;ACCESS is DENIED. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:130%;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;To fix this you need to add the account WSS_WPG to the C:\Windows\Tasks folder on your Index server and apply modify rights.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Z95_r_R47pg/SRgl7JqXaII/AAAAAAAAAAw/LdY5b5OurWI/s1600-h/WindowsTasksPermissions.jpg"&gt;&lt;img style="cursor: pointer; width: 249px; height: 320px;" src="http://2.bp.blogspot.com/_Z95_r_R47pg/SRgl7JqXaII/AAAAAAAAAAw/LdY5b5OurWI/s320/WindowsTasksPermissions.jpg" alt="" id="BLOGGER_PHOTO_ID_5267001462345918594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you cannot see the Security tab on the Tasks folder you need to open a command prompt and type is:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;attrib -s %windir%\tasks&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When you right click on the tasks folder having done this you should be able to see the Sharing &amp;amp; Security option.&lt;br /&gt;&lt;br /&gt;To remove the option once you have applied the changes to the folder open command prompt again and type:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;attrib +s %windir%\tasks&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-8713846706419410508?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/8713846706419410508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2008/11/crawl-scheduling-error-access-denied.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8713846706419410508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/8713846706419410508'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2008/11/crawl-scheduling-error-access-denied.html' title='Crawl Scheduling Error - Access Denied'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Z95_r_R47pg/SRgkZvqJI_I/AAAAAAAAAAo/jB6Ub7TVz4c/s72-c/SSPCrawlSchedule.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-5195089641082192044</id><published>2008-11-06T18:16:00.008Z</published><updated>2008-11-07T11:48:23.489Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL 2005'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Moving SharePoint Database Data and Log Files</title><content type='html'>1.    Quiesce the Farm&lt;br /&gt;2.    Backup all of the databases that you are looking to move.&lt;br /&gt;3.    Turn off SharePoint Services (via Services console) to stop the connections to the databases&lt;br /&gt;&lt;blockquote&gt;a.    Office SharePoint Search Service&lt;br /&gt;b.    Windows SharePoint Services Administration&lt;br /&gt;c.    Windows SharePoint Services Search&lt;br /&gt;d.    Windows SharePoint Services Timer&lt;br /&gt;e.    Windows SharePoint Services Tracing&lt;br /&gt;f.    World Wide Web Publishing Service&lt;/blockquote&gt;4.    Detach the databases that need to be moved.&lt;br /&gt;5.    Navigate to where the data and log files are stored and copy them to your destination.&lt;br /&gt;6.    Reattach your databases.&lt;br /&gt;7.    Restart your services.&lt;br /&gt;8.    Un-quiesce the farm.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37820012-5195089641082192044?l=bytelab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bytelab.blogspot.com/feeds/5195089641082192044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bytelab.blogspot.com/2008/11/moving-sharepoint-database-data-files.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5195089641082192044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37820012/posts/default/5195089641082192044'/><link rel='alternate' type='text/html' href='http://bytelab.blogspot.com/2008/11/moving-sharepoint-database-data-files.html' title='Moving SharePoint Database Data and Log Files'/><author><name>Bytelab</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_Z95_r_R47pg/SPi5lbG6TdI/AAAAAAAAAAM/Fq97hLuxWlA/S220/Hannah4.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37820012.post-6128925229131799868</id><published>2008-11-04T15:28:00.013Z</published><updated>2008-11-04T16:58:38.718Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='STSADM'/><category scheme='http://www.blogger.com/atom/ns#' term='WSS 3.0'/><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Central Administration'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS SP1'/><category scheme='http://www.blogger.com/atom/ns#' term='Performance Point Server'/><category scheme='http://www.blogger.com/atom/ns#' term='Application Events'/><category scheme='http://www.blogger.com/atom/ns#' term='Shared Service Providers'/><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>Changing MOSS service accounts &amp; passwords</title><content type='html'>I have been preparing some servers for a bunch of testing with PerformancePoint Server (more to follow on this later) which required me to change our MOSS service accounts. Reading around the steps to update these credentials appeared pretty straight forward but as usual MOSS' idiosyncrasies were all to apparent.  Here's what i did and how i managed to solve the issues that arose. Hope it helps someone else with the same challenge.&lt;br /&gt;&lt;br /&gt;The accounts to be changed were as follows:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;old_moss_admin ----&amp;gt; new_moss_admin &lt;/li&gt;  &lt;li&gt;old_ssp_ap ----&amp;gt;new_ssp_ap&lt;/li&gt;  &lt;li&gt;old_ap1_process  ----&amp;gt;new_ap1_process&lt;/li&gt;&lt;/ol&gt;I followed the following MS KB instructions: '&lt;a href="http://support.microsoft.com/kb/934838"&gt;How to change service accounts and service account passwords in SharePoint Server 2007 and in Windows SharePoint Services 3.0&lt;/a&gt;'&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;1. MOSS Admin Account Update &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To update the account old_moss_admin to new_moss_admin:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Update the password for the account that is used by the Central Administration application pool. To do this, follow these steps:&lt;/li&gt;  &lt;ol&gt;&lt;br /&gt;&lt;li&gt;On all servers in the server farm, open a command prompt, type the following line, and then press ENTER:&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;cd %commonprogramfiles%\Microsoft Shared\Web server extensions\12\Bin&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;On the server that hosts the Central Administration Web site, type the following line at the command prompt, and then press ENTER:&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;stsadm -o updatefarmcredentials -userlogin DomainName\UserName -password NewPassword&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;On all other servers in the server farm, type the following line at the command prompt, and then press ENTER:&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;stsadm -o updatefarmcredentials -userlogin DomainName\UserName -password NewPassword -local&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Restart Microsoft Internet Information Services (IIS) 6.0. To do this, type the following line at the command prompt, and then press ENTER:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;iisreset /noforce&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;  &lt;li&gt;Verify that the Administration Application Pool Credential Deployment job definition is no longer displayed on the Timer Job Definitions page of SharePoint 3.0 Central Administration. To do this, follow these steps:&lt;/li&gt;  &lt;ol&gt;&lt;br /&gt;&lt;li&gt;Open SharePoint 3.0 Central Administration, click Operations, and then click Timer job definitions under Global Configuration.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Verify that the Administration Application Pool Credential Deployment job definition is no longer displayed in the list.&lt;/li&gt;  &lt;/ol&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;Error: &lt;/span&gt;My Central Administration is now no longer available with the error: 'Service Unavailable'&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I checked &amp;amp; retyped the password in CA web app pool. &lt;/li&gt;  &lt;li&gt;I checked the WSS_WPG, WSS_RESTRICTED_WPG and WSS_ADMIN_WPG local groups on each of the servers - all seemed to be up to date. &lt;/li&gt;  &lt;li&gt;Restarting the CA web app pool makes no difference.&lt;/li&gt;&lt;/ul&gt;At this point i rolled back to the previous credentials. I then tried again from the start following the same steps above. Result - my Central Administration was still unavailable with the error: 'Service Unavailable'&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I checked the IIS_WPG local group on each server. The new_moss_admin account was not updated so i added it to the group. &lt;/li&gt;&lt;/ul&gt;I then discovered a couple of DCOM errors in the System Event viewer.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;I updated the new CA account 'new_moss_admin' to: &lt;/li&gt;  &lt;ul&gt;&lt;br /&gt;&lt;li&gt;IIS Admin Service &lt;/li&gt;    &lt;li&gt;IIS WAMREG Admin Service &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;  &lt;li&gt;Restarted IIS. &lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;Success: &lt;/span&gt;Central Admin is up and running again.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;2. SSP Account Update &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To update the SSP account old_ssp_ap to new_ssp_ap:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Attempt 1 - The wrong way... &lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open Central Administration&lt;/li&gt;  &lt;li&gt;Navigate to the Operations page&lt;/li&gt;  &lt;li&gt;Select Service Accounts&lt;/li&gt;  &lt;li&gt;Select the radio button Web app pool&lt;/li&gt;  &lt;li&gt;Select the web service - WSS Web App &lt;/li&gt;  &lt;li&gt;Select the App Pool - SSP1&lt;/li&gt;  &lt;li&gt;Select the radio button Configurable&lt;/li&gt;  &lt;li&gt;Input the new credentials&lt;/li&gt;  &lt;li&gt;Ok&lt;/li&gt;  &lt;li&gt;Restarted IIS on both my servers&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;Error: &lt;/span&gt;This had no effect other than stopping me from accessing the SSP. Checking in IIS the account was not updated to the new credentials. I then tried to update the accout via IIS but this had noeffect either and on opening the App Pool properties again i discovered that the account credentials had changed themselves back to the old account.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Attempt 2 - The right way... &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I then tried a different approach:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open Central Administration&lt;/li&gt;  &lt;li&gt;Navigate to the Shared Services Aministration homepage&lt;/li&gt;  &lt;li&gt;Hover over SSP1's title and select Edit Properties from the drop down.&lt;/li&gt;  &lt;li&gt;Scroll down to SSP Server Credentials&lt;/li&gt;  &lt;li&gt;Delete the old credentials and input the new account username &amp;amp; password&lt;/li&gt;  &lt;li&gt;Ok&lt;/li&gt;  &lt;li&gt;I then changed the SSP to be the default SSP. &lt;/li&gt;&lt;li&gt;Open Compnent Services and update the DCOM services IIS Admin &amp;amp; IIS WAMREG with the new account.&lt;br /&gt;&lt;/li&gt;  &lt;li&gt;Restarted IIS on both my servers.&lt;/li&gt;&lt;/ol&gt;Checking IIS the account was still not updated to the new credentials and i still could not access the SSP website.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Success:&lt;/span&gt; 10 minutes later having searched on Google again and felt thoroughly annoyed at there being no pages I hadn't yet read on this topic I checked the SSP website again and it worked! Checking IIS the accounts have now updated to the new credentials.&lt;br /&gt;&lt;br /&gt;At this stage I discovered some new errors in the Event View&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-
