{"id":5192,"date":"2014-04-22T23:08:48","date_gmt":"2014-04-22T22:08:48","guid":{"rendered":"http:\/\/www.markwilson.co.uk\/blog\/?p=5192"},"modified":"2014-04-22T23:08:48","modified_gmt":"2014-04-22T22:08:48","slug":"fighting-with-formulae-in-excel","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm","title":{"rendered":"Fighting with formulae in Excel"},"content":{"rendered":"<p>Excel. Love it, or hate it, there are few of us in white collar jobs who don&#8217;t have to grapple with it from time to time and, earlier this evening, after OneNote had yet again decided that syncing shared notebooks via our ageing SharePoint platform as not going to work, I needed to come up with a new way of storing actions and decisions\u00a0for the management team I&#8217;m\u00a0one member of.<\/p>\n<p>I would have liked to create a SharePoint task list but I don&#8217;t have the necessary permissions, or the inclination to find out who can give me them (and then to justify why I need to do this). Which led me back to\u00a0the tool upon which so many business processes are built: Excel.<\/p>\n<p>On the way, I grappled with some formulae, so I decided to knock up some notes for the next time this happens &#8211; or the next person who needs to do something similar&#8230;<\/p>\n<h3>Nested IFs, SEARCHes and ISERRORs<\/h3>\n<p>My\u00a0Excel workbook is simple: two tabs (&#8220;Decisions&#8221; and &#8220;Actions&#8221;). \u00a0The Decisions tab looks after itself: three columns with a date, a decision, and the rationale behind it. \u00a0Actions is a little more complex (read over-engineered). \u00a0I\u00a0have date, status, action, owner, target date, and notes. Then I want the status to be auto-populated based on the notes (If the notes say complete, then status is &#8220;Completed&#8221;; if the notes include the word cancelled then the status is &#8220;Cancelled&#8221;, otherwise the status is &#8220;Open&#8221;).<\/p>\n<p>This was the first challenge. \u00a0Excel doesn&#8217;t have an ELSE in its <a href=\"http:\/\/office.microsoft.com\/en-gb\/excel-help\/if-function-HP010342586.aspx\">IF function<\/a>, but you can nest IFs as follows:<\/p>\n<p><code>IF(logical_test, [value_if_true], (IF(logical_test, [value_if_true], [value_if_false]))<\/code><\/p>\n<p>(or use one of the LOOKUP functions). \u00a0I combined this with the <a href=\"http:\/\/office.microsoft.com\/en-gb\/excel-help\/search-searchb-HP005209249.aspx\">SEARCH function<\/a> to\u00a0look for\u00a0instances of the word &#8220;Cancelled&#8221; in the\u00a0notes and everything was working well with results returned for a match on &#8220;Complete&#8221;, or an instance of &#8220;Cancelled&#8221; but then the catch all value if false always returned a <span style=\"color: #444444;\">#VALUE!<\/span>\u00a0error.<\/p>\n<p>As SEARCH will always return <span style=\"color: #444444;\">#VALUE! if the search\u00a0string is not present, I started to look for workarounds. \u00a0<\/span><a href=\"http:\/\/www.techonthenet.com\/excel\/formulas\/find.php\">Some googling told me that I need to test for an error condition<\/a> with the\u00a0<a href=\"http:\/\/office.microsoft.com\/en-gb\/excel-help\/is-functions-HP010342632.aspx\">ISERROR function<\/a>\u00a0but that didn&#8217;t seem to solve the issue. So I reversed the logic &#8211; check for the error first andthen take action accordingly:<\/p>\n<p><code>=IF(F2=\"Complete\", \"Completed\", IF(ISERROR(SEARCH(\"Cancelled\",F2))=TRUE,\"Open\", IF(SEARCH(\"Cancelled\",F2), \"Cancelled\")))<\/code><\/p>\n<p>It may be easier to understand this in some form of\u00a0pseudocode:<\/p>\n<p><code>IF cellvalue=\"Complete\"<br \/>\n{<br \/>\nstatus =\u00a0\"Completed\"<br \/>\n}<br \/>\nELSE<br \/>\n{<br \/>\nIF cellvalue doesn't contain\u00a0\"Cancelled\"<br \/>\n{<br \/>\nstatus =\u00a0\"Open\"<br \/>\n}<br \/>\nELSE<br \/>\n{<br \/>\nIF cellvalue contains \"Cancelled\"<br \/>\n{<br \/>\nstatus =\u00a0\"Cancelled\"<br \/>\n}<br \/>\n}<br \/>\n}<\/code><\/p>\n<h3>Conditional formatting based on cell contents<\/h3>\n<p>The next thing I wanted to do was to format each item in the\u00a0action list according to it&#8217;s status and\/or date. I wanted to colour completed actions grey; mark cancelled actions as grey and strikethrough the font, then add a red\/amber\/green status on open actions according to the target date. Conditional formatting did the trick here but I wasn&#8217;t sure how to\u00a0highlight a row based on the contents of one cell in the row.<\/p>\n<p><a href=\"http:\/\/www.howtogeek.com\/howto\/45670\/how-to-highlight-a-row-in-excel-using-conditional-formatting\/\">I found the answer on the HowToGeek site<\/a>\u00a0and key to this is not worrying that the reference to the cell used to test the logic is a single cell &#8211; Excel is smart enough to work out that you need the same column on the next row when evaluating the condition there.<\/p>\n<p>So, I ended up with six rules, three of which use the <a href=\"http:\/\/office.microsoft.com\/en-gb\/excel-help\/today-function-HP010062297.aspx\">TODAY function<\/a> to evaluate whether the task is overdue or not (or due today):<\/p>\n<table border=\"0\" width=\"128\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col span=\"2\" width=\"64\" \/> <\/colgroup>\n<tbody>\n<tr>\n<td><strong>Formula<\/strong><\/td>\n<td><strong>Format<\/strong><\/td>\n<\/tr>\n<tr>\n<td><code>=$B2=\"Cancelled\"<\/code><\/td>\n<td bgcolor=\"#a5a5a5\"><s>AaBbCcYyZz<\/s><\/td>\n<\/tr>\n<tr>\n<td><code>=$B2=\"Completed\"<\/code><\/td>\n<td bgcolor=\"#a5a5a5\">AaBbCcYyZz<\/td>\n<\/tr>\n<tr>\n<td><code>=$E2=\"\"<\/code><\/td>\n<td>No format set<\/td>\n<\/tr>\n<tr>\n<td><code>=$E2&lt;TODAY()<\/code><\/td>\n<td bgcolor=\"#c00000\"><span style=\"color: #ededed;\">AaBbCcYyZz<\/span><\/td>\n<\/tr>\n<tr>\n<td><code>=$E2=TODAY()<\/code><\/td>\n<td bgcolor=\"#ffc000\">AaBbCcYyZz<\/td>\n<\/tr>\n<tr>\n<td><code>=$E2&gt;TODAY()<\/code><\/td>\n<td bgcolor=\"#009900\"><span style=\"color: #ededed;\">AaBbCcYyZz<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>It may all be a bit OTT, but I for one\u00a0work in a very visual manner &#8211; I need documents to show me something, not just rely on reading the text. \u00a0Hopefully this will work out to be a useful tool for us&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Excel. Love it, or hate it, there are few of us in white collar jobs who don&#8217;t have to grapple with it from time to time and, earlier this evening, after OneNote had yet again decided that syncing shared notebooks via our ageing SharePoint platform as not going to work, I needed to come up &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Fighting with formulae in Excel<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[218],"tags":[188],"class_list":["post-5192","post","type-post","status-publish","format-standard","hentry","category-technology","tag-excel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fighting with formulae in Excel - markwilson.it<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fighting with formulae in Excel - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"Excel. Love it, or hate it, there are few of us in white collar jobs who don&#8217;t have to grapple with it from time to time and, earlier this evening, after OneNote had yet again decided that syncing shared notebooks via our ageing SharePoint platform as not going to work, I needed to come up &hellip; Continue reading Fighting with formulae in Excel\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2014-04-22T22:08:48+00:00\" \/>\n<meta name=\"author\" content=\"Mark Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:site\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Fighting with formulae in Excel\",\"datePublished\":\"2014-04-22T22:08:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm\"},\"wordCount\":626,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"keywords\":[\"Microsoft Excel\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm\",\"name\":\"Fighting with formulae in Excel - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"datePublished\":\"2014-04-22T22:08:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2014\\\/04\\\/fighting-with-formulae-in-excel.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fighting with formulae in Excel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/\",\"name\":\"markwilson.it\",\"description\":\"get-info -class technology | write-output &gt; \\\/dev\\\/web\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\",\"name\":\"Mark Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"width\":800,\"height\":800,\"caption\":\"Mark Wilson\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\"},\"description\":\"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.\",\"sameAs\":[\"http:\\\/\\\/www.markwilson.co.uk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/markwilsonuk\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/markawilson\\\/\",\"https:\\\/\\\/x.com\\\/markwilsonit\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCWHlZCoHRTocdvtrOJ2IL4A\"],\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/author\\\/mark-wilson\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fighting with formulae in Excel - markwilson.it","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm","og_locale":"en_GB","og_type":"article","og_title":"Fighting with formulae in Excel - markwilson.it","og_description":"Excel. Love it, or hate it, there are few of us in white collar jobs who don&#8217;t have to grapple with it from time to time and, earlier this evening, after OneNote had yet again decided that syncing shared notebooks via our ageing SharePoint platform as not going to work, I needed to come up &hellip; Continue reading Fighting with formulae in Excel","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm","og_site_name":"markwilson.it","article_published_time":"2014-04-22T22:08:48+00:00","author":"Mark Wilson","twitter_card":"summary_large_image","twitter_creator":"@markwilsonit","twitter_site":"@markwilsonit","twitter_misc":{"Written by":"Mark Wilson","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Fighting with formulae in Excel","datePublished":"2014-04-22T22:08:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm"},"wordCount":626,"commentCount":4,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"keywords":["Microsoft Excel"],"articleSection":["Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm","name":"Fighting with formulae in Excel - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"datePublished":"2014-04-22T22:08:48+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2014\/04\/fighting-with-formulae-in-excel.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Fighting with formulae in Excel"}]},{"@type":"WebSite","@id":"https:\/\/www.markwilson.co.uk\/blog\/#website","url":"https:\/\/www.markwilson.co.uk\/blog\/","name":"markwilson.it","description":"get-info -class technology | write-output &gt; \/dev\/web","publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.markwilson.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468","name":"Mark Wilson","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","url":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","width":800,"height":800,"caption":"Mark Wilson"},"logo":{"@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1"},"description":"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.","sameAs":["http:\/\/www.markwilson.co.uk\/","https:\/\/www.instagram.com\/markwilsonuk\/","https:\/\/www.linkedin.com\/in\/markawilson\/","https:\/\/x.com\/markwilsonit","https:\/\/www.youtube.com\/channel\/UCWHlZCoHRTocdvtrOJ2IL4A"],"url":"https:\/\/www.markwilson.co.uk\/blog\/author\/mark-wilson"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":5805,"url":"https:\/\/www.markwilson.co.uk\/blog\/2015\/08\/short-takes-excel-tips-display-worksheet-name-validate-data-editing-microsoft-project-files-stored-sharepoint-xps-pdf-conversion-service.htm","url_meta":{"origin":5192,"position":0},"title":"Short takes: Excel tips to display the worksheet name and validate data; editing Microsoft Project files stored on SharePoint; and an XPS to PDF conversion service","author":"Mark Wilson","date":"Monday 17 August 2015","format":false,"excerpt":"Another collection of mini-posts based on recent IT trials and tribulations... Excel tips to display the worksheet name in a cell\u00a0and to validate data Last week, I was working on an Excel spreadsheet that acts as a plan for a series of tests. Each sheet has the same format, with\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4682,"url":"https:\/\/www.markwilson.co.uk\/blog\/2013\/01\/formulas-shown-in-excel-instead-of-the-results.htm","url_meta":{"origin":5192,"position":1},"title":"Formulas shown in Excel, instead of their results","author":"Mark Wilson","date":"Wednesday 2 January 2013","format":false,"excerpt":"Every month or so, I have to create a report which is extracted from SharePoint to Excel, and then a couple of extra columns are added with information required by a colleague. The additional columns simply present existing information in a different format but, for some reason, after pasting in\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":5649,"url":"https:\/\/www.markwilson.co.uk\/blog\/2015\/05\/short-takes-symbols-in-office-applications-and-converting-numbers-to-text-in-excel.htm","url_meta":{"origin":5192,"position":2},"title":"Short takes: Symbols in Office applications and converting numbers to text in Excel","author":"Mark Wilson","date":"Sunday 17 May 2015","format":false,"excerpt":"A few snippets I found on scraps of paper whilst sorting\u00a0out my office this\u00a0week... Shortcuts to\u00a0symbols in Office applications Many people will be familiar with typing (c) to generate a \u00a9 symbol in Microsoft Office applications but you can also use (R) or (TM) for trademark symbols \u00ae and \u2122.\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4519,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/10\/export-to-spreadsheet-from-sharepoint-2007-with-excel-2010.htm","url_meta":{"origin":5192,"position":3},"title":"Export to spreadsheet from SharePoint 2007 with Excel 2010","author":"Mark Wilson","date":"Wednesday 31 October 2012","format":false,"excerpt":"I frequently have to export data from a SharePoint list to Excel but earlier today I found it no longer works since I've upgraded to Office 2010. \u00a0Our SharePoint infrastructure is based on SharePoint 2007 and each time I attempted to Export to Spreadsheet from the Actions menu on the\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/sharepoint-2007-export-to-spreadsheet.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":4066,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/06\/creating-a-dashboard-using-a-sharepoint-list-part-4-bringing-it-all-together.htm","url_meta":{"origin":5192,"position":4},"title":"Creating a dashboard using a SharePoint list (part 4): bringing it all together","author":"Mark Wilson","date":"Friday 15 June 2012","format":false,"excerpt":"This week has been a bit of a SharePoint-fest as I've walked through the stages of creating my SharePoint dashboard. For obvious reasons, I can't share the version I use at work, so I've created a mockup using the SharePoint site that comes with my Office 365 subscription. Feel free\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3915,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/05\/more-sharepoint-shenanigans.htm","url_meta":{"origin":5192,"position":5},"title":"More SharePoint shenanigans","author":"Mark Wilson","date":"Friday 18 May 2012","format":false,"excerpt":"This week, I'ave mostly been working in SharePoint (those of a certain age may spot the reference to\u00a0Jesse from the Fast Show?) Earlier this month, I wrote a post with a few hints and tips I'd picked up whilst developing a site based on SharePoint. \u00a0Since then, I've come up\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/5192","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=5192"}],"version-history":[{"count":5,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/5192\/revisions"}],"predecessor-version":[{"id":5197,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/5192\/revisions\/5197"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=5192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=5192"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=5192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}