{"id":2429,"date":"2022-02-07T16:23:06","date_gmt":"2022-02-07T16:23:06","guid":{"rendered":"https:\/\/andyparkes.co.uk\/blog\/?p=2429"},"modified":"2022-02-07T16:23:09","modified_gmt":"2022-02-07T16:23:09","slug":"finding-all-the-pictures-in-an-excel-sheet","status":"publish","type":"post","link":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/","title":{"rendered":"Finding All The Pictures In An Excel Sheet"},"content":{"rendered":"\n<p>Thought I&#8217;d document this problem I recently came up against in case it happens again!<\/p>\n\n\n\n<p>Issue reported was that a particular Excel spreadsheet was slow to open, would often crash when saving and Excel generally be unresponsive. <\/p>\n\n\n\n<p>Seeing as it only seemed to occur with this one file that was obviously the first place to start. It wasn&#8217;t a massively complicated file. <\/p>\n\n\n\n<p>Six sheets. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"488\" height=\"60\" data-attachment-id=\"2430\" data-permalink=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/image-8\/\" data-orig-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png\" data-orig-size=\"488,60\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png\" src=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png\" alt=\"\" class=\"wp-image-2430\" srcset=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png 488w, https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-300x37.png 300w\" sizes=\"auto, (max-width: 488px) 100vw, 488px\" \/><\/figure>\n\n\n\n<p>Each sheet had exactly the same on it. A logo in the top left corner and various fields to fill out. This was basically an information gathering form. Members of staff would open this file which is the blank template on Monday, fill it out and save it somewhere else to be used for the rest of the week.  There were no formulas or anything clever at all so it was a little odd this was causing so many issues. <\/p>\n\n\n\n<p>Then I spotted the file size. It was 2.25MB. While that&#8217;s not a huge amount by modern standards, it&#8217;s still massive for what amounts to an almost empty file. <\/p>\n\n\n\n<p>So at this point I thought I&#8217;d figured it out. It must be the logo in the top corner of each page. Someone has clearly inserted a massively high res version of the logo and each page. However, while that might explain the file size, why would it be performing so badly? I could understand if they were 100MB images. But six images across 2.5mb. That&#8217;s a few hundred kilobytes tops right? <\/p>\n\n\n\n<p>Either way it seemed the best place to start. I planned to delete the logo and resave the file and see what happened<\/p>\n\n\n\n<p>So I clicked onto the logo and pressed the delete key. Nothing happened. Thinking it was just me I pressed it again. No change. I tried a couple more times and the same thing happened. Weird. I checked the sheet wasn&#8217;t locked. Nope, not that. <\/p>\n\n\n\n<p>So I clicked it dragged it across the page and that&#8217;s when I found the problem.  (see my crude mock up!) <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"542\" height=\"376\" data-attachment-id=\"2431\" data-permalink=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/exlpic\/\" data-orig-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXLPIC.gif\" data-orig-size=\"542,376\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"EXLPIC\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXLPIC.gif\" src=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXLPIC.gif\" alt=\"\" class=\"wp-image-2431\"\/><\/figure>\n\n\n\n<p>There were loads of copies of the logo all laid on top of each other. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>So first thing, just to satisfy my curiosity I wanted to know exactly many images there were so I threw together a bit of rough VBA code to give me the total on each sheet, and the total amount in the whole workbook. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Sub Count_The_Logos()\n\nDim LogoCount As Long\nDim TotalCount as Long\n\nDim wrk As Worksheet\n\nFor Each wrk In ActiveWorkbook.Worksheets\n\n   LogoCount = wrk.Shapes.Count\n   TotalCount = TotalCount + LogoCount\n\n   Debug.Print  wrk.Name &amp; \" - \" &amp; LogoCount \n\nNext\n\nDebug.Print \"Total - \" &amp; TotalCount\n\nEnd Sub\n<\/code><\/pre>\n\n\n\n<p>This is what it spat out<\/p>\n\n\n\n<p>Monday &#8211; 2549<br>Tuesday &#8211; 2209<br>Wednesday &#8211; 1862<br>Thursday &#8211; 1132<br>Friday &#8211; 686<br>Sat + Sun &#8211; 1<br>Total &#8211; 8439<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Yes that&#8217;s right. The workbook contained a total of <strong>8,439<\/strong> copies of the logo! No wonder it was struggling. <\/p>\n\n\n\n<p>So the next job was to remove them all and see if that fixed the problem. Thankfully there is a pretty easy way of doing it. I could have repurposed the code but I think it&#8217;s useful to know how to do this anyway<\/p>\n\n\n\n<p>Frome the home tab click the Find and Select dropdown. Ignore the &#8220;Select objects&#8221; option, even though that seems the obvious one as that&#8217;s for selecting items one at a time. <\/p>\n\n\n\n<p>Instead choose &#8220;Go To Special&#8221;<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"213\" height=\"408\" data-attachment-id=\"2432\" data-permalink=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/image-1-2\/\" data-orig-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-1.png\" data-orig-size=\"213,408\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-1.png\" src=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-1.png\" alt=\"\" class=\"wp-image-2432\" srcset=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-1.png 213w, https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-1-157x300.png 157w\" sizes=\"auto, (max-width: 213px) 100vw, 213px\" \/><\/figure>\n\n\n\n<p>From there select &#8220;Objects&#8221; <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"321\" height=\"340\" data-attachment-id=\"2433\" data-permalink=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/image-2-2\/\" data-orig-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-2.png\" data-orig-size=\"321,340\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-2.png\" src=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-2.png\" alt=\"\" class=\"wp-image-2433\" srcset=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-2.png 321w, https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image-2-283x300.png 283w\" sizes=\"auto, (max-width: 321px) 100vw, 321px\" \/><\/figure>\n\n\n\n<p>That will select every object in the workbook. In this case that means all the pictures but sure this is what you want. An object could be a lot of things in an Excel workbook<\/p>\n\n\n\n<p>Then press the delete key<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"301\" data-attachment-id=\"2434\" data-permalink=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/explic2\/\" data-orig-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXPLIC2.gif\" data-orig-size=\"600,301\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"EXPLIC2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXPLIC2.gif\" src=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/EXPLIC2.gif\" alt=\"\" class=\"wp-image-2434\"\/><\/figure>\n\n\n\n<p>All gone! I then put a single copy of the logo on each page and saved the file. File size was now 112Kb and unsurprisingly the problems all went away. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Thought I&#8217;d document this problem I recently came up against in case it happens again! Issue reported was that a particular Excel spreadsheet was slow to open, would often crash when saving and Excel generally be unresponsive. Seeing as it only seemed to occur with this one file that was obviously the first place to<\/p>\n<p><a class=\"readmore\" href=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\"><span class=\"arrow-right icon\"><\/span>Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[1],"tags":[],"class_list":["post-2429","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.11 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog<\/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:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog\" \/>\n<meta property=\"og:description\" content=\"Thought I&#8217;d document this problem I recently came up against in case it happens again! Issue reported was that a particular Excel spreadsheet was slow to open, would often crash when saving and Excel generally be unresponsive. Seeing as it only seemed to occur with this one file that was obviously the first place toRead More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\" \/>\n<meta property=\"og:site_name\" content=\"Andy&#039;s Techie Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-07T16:23:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-07T16:23:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png\" \/>\n<meta name=\"author\" content=\"Andy Parkes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andy Parkes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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\":\"WebPage\",\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\",\"url\":\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\",\"name\":\"Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog\",\"isPartOf\":{\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/#website\"},\"datePublished\":\"2022-02-07T16:23:06+00:00\",\"dateModified\":\"2022-02-07T16:23:09+00:00\",\"author\":{\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/3534e8ac6b1bec765cd061feff56679d\"},\"breadcrumb\":{\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andyparkes.co.uk\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Finding All The Pictures In An Excel Sheet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/#website\",\"url\":\"https:\/\/andyparkes.co.uk\/blog\/\",\"name\":\"Andy&#039;s Techie Blog\",\"description\":\"Professional Geek\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/andyparkes.co.uk\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/3534e8ac6b1bec765cd061feff56679d\",\"name\":\"Andy Parkes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3824cbf53df51d7ca5cf809b6ad81a157fbfff2292e36ab8666f04ddad06bfcc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3824cbf53df51d7ca5cf809b6ad81a157fbfff2292e36ab8666f04ddad06bfcc?s=96&d=mm&r=g\",\"caption\":\"Andy Parkes\"},\"description\":\"Andy Parkes is Technical Director at Coventry based IT support company IBIT Solutions. Formerly, coordinator of AMITPRO and Microsoft Partner Area Lead for 2012-2013. He also isn't a fan of describing himself in the third person.\",\"sameAs\":[\"http:\/\/www.andyparkes.co.uk\/blog\"],\"url\":\"https:\/\/andyparkes.co.uk\/blog\/index.php\/author\/andyparkes\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog","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:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/","og_locale":"en_US","og_type":"article","og_title":"Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog","og_description":"Thought I&#8217;d document this problem I recently came up against in case it happens again! Issue reported was that a particular Excel spreadsheet was slow to open, would often crash when saving and Excel generally be unresponsive. Seeing as it only seemed to occur with this one file that was obviously the first place toRead More","og_url":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/","og_site_name":"Andy&#039;s Techie Blog","article_published_time":"2022-02-07T16:23:06+00:00","article_modified_time":"2022-02-07T16:23:09+00:00","og_image":[{"url":"https:\/\/andyparkes.co.uk\/blog\/wp-content\/uploads\/2022\/02\/image.png"}],"author":"Andy Parkes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Andy Parkes","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/","url":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/","name":"Finding All The Pictures In An Excel Sheet - Andy&#039;s Techie Blog","isPartOf":{"@id":"https:\/\/andyparkes.co.uk\/blog\/#website"},"datePublished":"2022-02-07T16:23:06+00:00","dateModified":"2022-02-07T16:23:09+00:00","author":{"@id":"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/3534e8ac6b1bec765cd061feff56679d"},"breadcrumb":{"@id":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/andyparkes.co.uk\/blog\/index.php\/2022\/02\/07\/finding-all-the-pictures-in-an-excel-sheet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andyparkes.co.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"Finding All The Pictures In An Excel Sheet"}]},{"@type":"WebSite","@id":"https:\/\/andyparkes.co.uk\/blog\/#website","url":"https:\/\/andyparkes.co.uk\/blog\/","name":"Andy&#039;s Techie Blog","description":"Professional Geek","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/andyparkes.co.uk\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/3534e8ac6b1bec765cd061feff56679d","name":"Andy Parkes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyparkes.co.uk\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3824cbf53df51d7ca5cf809b6ad81a157fbfff2292e36ab8666f04ddad06bfcc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3824cbf53df51d7ca5cf809b6ad81a157fbfff2292e36ab8666f04ddad06bfcc?s=96&d=mm&r=g","caption":"Andy Parkes"},"description":"Andy Parkes is Technical Director at Coventry based IT support company IBIT Solutions. Formerly, coordinator of AMITPRO and Microsoft Partner Area Lead for 2012-2013. He also isn't a fan of describing himself in the third person.","sameAs":["http:\/\/www.andyparkes.co.uk\/blog"],"url":"https:\/\/andyparkes.co.uk\/blog\/index.php\/author\/andyparkes\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pmvJ6-Db","jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/posts\/2429","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/comments?post=2429"}],"version-history":[{"count":1,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/posts\/2429\/revisions"}],"predecessor-version":[{"id":2435,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/posts\/2429\/revisions\/2435"}],"wp:attachment":[{"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/media?parent=2429"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/categories?post=2429"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/andyparkes.co.uk\/blog\/index.php\/wp-json\/wp\/v2\/tags?post=2429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}