{"id":3242,"date":"2021-04-19T09:26:54","date_gmt":"2021-04-19T16:26:54","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=3242"},"modified":"2021-04-20T10:12:53","modified_gmt":"2021-04-20T17:12:53","slug":"how-to-count-the-number-of-weekends-weekdays-between-two-dates-in-excel","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=3242","title":{"rendered":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?"},"content":{"rendered":"\n<p>Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\/1\/2014 and the end date is 2\/15\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult for us, but here, I can talk about some effective methods for you.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">&nbsp;<strong>Count The Number Of Specific Weekdays\/Weekends Between Two Dates With Formula<\/strong><\/h4>\n\n\n\n<p>Supposing, I have the following two dates, and I need to count how many Sundays between them. Select a blank cell, enter below formula, and press the&nbsp;<strong>Enter<\/strong>&nbsp;key. And now you will get the number of Sundays between the two dates. See screenshot:<br><img decoding=\"async\" src=\"https:\/\/cdn.extendoffice.com\/images\/stories\/doc-excel\/count-weekday-weekend\/doc-count-weekday-weekend-001.png\" alt=\"\"><\/p>\n\n\n\n<p>=INT((WEEKDAY($C$2- 1)-$C$2+$C3)\/7)<\/p>\n\n\n\n<p>Another Sample here:<\/p>\n\n\n\n<p>=INT((WEEKDAY($C$4-1)-$C$4+$C$5)\/7)<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"905\" height=\"489\" src=\"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2021\/04\/image.png\" alt=\"\" class=\"wp-image-3250\" srcset=\"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2021\/04\/image.png 905w, https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2021\/04\/image-300x162.png 300w, https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2021\/04\/image-768x415.png 768w\" sizes=\"(max-width: 905px) 100vw, 905px\" \/><\/figure>\n\n\n\n<p><strong>Notes:<\/strong><\/p>\n\n\n\n<p>(1) In the above formula, C2 is the start date and C3 indicates the end date.<\/p>\n\n\n\n<p>(2) In above formula,&nbsp;<strong>1<\/strong>&nbsp;stands for Sunday. And you can replace the number 1 with other numbers between 1 and 7. (<strong>1 is Sunday, 2 is Monday, 3 is Tuesday, 4 is Wednesday, 5 is Thursday, 6 is Friday and 7 is Saturday<\/strong>)<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">&nbsp;<strong>Use Formula To Count The Number Of Specific Weekday In Month<\/strong><\/h4>\n\n\n\n<p>Sometimes, you may need to count the total number of a certain weekday in the given month, says count the total number of Wednesday in July, 2020. Here, I will introduce a formula to count the total number of a certain weekday in the specified month easily.<\/p>\n\n\n\n<p>Select a blank cell, type below formula, and press the Enter key to get the counting result.<br><img decoding=\"async\" src=\"https:\/\/cdn.extendoffice.com\/images\/stories\/doc-excel\/count-weekday-weekend\/doc-count-weekday-weekend-002.png\" alt=\"\"><\/p>\n\n\n\n<p>=INT((WEEKDAY(DATE(G2,G3,1)- G4)-DATE(G2,G3,1)+EOMONTH(DATE(G2,G3,1),0))\/7)<\/p>\n\n\n\n<p><strong>Notes<\/strong>:<\/p>\n\n\n\n<p>(1) In above formula, G2 is the specified year, G3 is the specified month, and G4 is the specified day of week.<\/p>\n\n\n\n<p>(2) This formula assigns integers to represent day of weeks: 1 is Sunday, 2 is Monday, 3 is Tuesday, 4 is Wednesday, 5 is Thursday, 6 is Friday, and 7 is Saturday.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">&nbsp;<strong>Use User Defined Function To Count The Number Of Specific Weekdays\/Weekends In A Given Month<\/strong><\/h4>\n\n\n\n<p>You can also create a User Defined Function to calculate how many specific weekdays in a given year and month besides the above formula.<\/p>\n\n\n\n<p><strong>1<\/strong>. Hold down the&nbsp;<strong>ALT + F11<\/strong>&nbsp;keys, and it opens the&nbsp;<strong>Microsoft Visual Basic for Applications window<\/strong>.<\/p>\n\n\n\n<p><strong>2<\/strong>. Click&nbsp;<strong>Insert<\/strong>&nbsp;&gt;&nbsp;<strong>Module<\/strong>, and paste the following code in the&nbsp;<strong>Module Window<\/strong>.<\/p>\n\n\n\n<p>Public Function TotalDays(pYear As Integer, pMonth As Integer, pDay As Integer)<br>Dim xindex As Integer<br>Dim endDate As Integerend<br>Date = Day(DateSerial(pYear, pMonth + 1, 0))<br>For xindex = 1 To endDate<br>If Weekday(DateSerial(pYear, pMonth, xindex)) = pDay Then<br>TotalDays = TotalDays + 1<br>End If<br>Next<br>End Function<\/p>\n\n\n\n<p><strong>3<\/strong>. Save this code and return to the worksheet, then in a blank cell, enter this formula&nbsp;<strong>= TotalDays(year, month, 1)<\/strong>&nbsp;. In this example, I will count how many Sundays there are in June 2020, so I can apply this formula as one of below formulas<strong><\/strong>, then press&nbsp;<strong>Enter<\/strong>&nbsp;key, and you will get how many Sundays at once. see screenshots:<br><img decoding=\"async\" src=\"https:\/\/cdn.extendoffice.com\/images\/stories\/doc-excel\/count-weekday-weekend\/doc-count-weekday-weekend-003.png\" alt=\"\"><\/p>\n\n\n\n<p>=TotalDays(C2,C3,C4)<\/p>\n\n\n\n<p>=TotalDays(2020,6,1)<\/p>\n\n\n\n<p><strong>Notes:<\/strong>&nbsp;This formulas use integers to represent day of weeks:&nbsp;<strong>1 is Sunday, 2 is Monday, 3 is Tuesday, 4 is Wednesday, 5 is Thursday, 6 is Friday and 7 is Saturday<\/strong>.<\/p>\n\n\n\n<p>Ref: https:\/\/www.extendoffice.com\/documents\/excel\/1421-excel-count-mondays-sundays-between-two-dates.html<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\/1\/2014 and the end date is 2\/15\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=3242\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[10,18],"tags":[691,690],"class_list":["post-3242","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-microsoft-office","tag-count-the-number-of-weekdays","tag-count-the-number-of-weekends"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\/1\/2014 and the end date is 2\/15\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"count the number of weekdays,count the number of weekends,microsoft family,microsoft office\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=3242\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#article\",\"name\":\"How To Count The Number Of Weekends\\\/Weekdays Between Two Dates In Excel? | Summa Lai\",\"headline\":\"How To Count The Number Of Weekends\\\/Weekdays Between Two Dates In Excel?\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/cdn.extendoffice.com\\\/images\\\/stories\\\/doc-excel\\\/count-weekday-weekend\\\/doc-count-weekday-weekend-001.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242\\\/#articleImage\"},\"datePublished\":\"2021-04-19T09:26:54-07:00\",\"dateModified\":\"2021-04-20T10:12:53-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#webpage\"},\"articleSection\":\"Microsoft Family, Microsoft Office, Count The Number Of Weekdays, Count The Number Of Weekends\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"position\":3,\"name\":\"Microsoft Office\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#listItem\",\"name\":\"How To Count The Number Of Weekends\\\/Weekdays Between Two Dates In Excel?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#listItem\",\"position\":4,\"name\":\"How To Count The Number Of Weekends\\\/Weekdays Between Two Dates In Excel?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242\",\"name\":\"How To Count The Number Of Weekends\\\/Weekdays Between Two Dates In Excel? | Summa Lai\",\"description\":\"Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\\\/1\\\/2014 and the end date is 2\\\/15\\\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3242#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2021-04-19T09:26:54-07:00\",\"dateModified\":\"2021-04-20T10:12:53-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel? | Summa Lai","description":"Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\/1\/2014 and the end date is 2\/15\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult","canonical_url":"https:\/\/SUMMALAI.COM\/?p=3242","robots":"max-image-preview:large","keywords":"count the number of weekdays,count the number of weekends,microsoft family,microsoft office","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=3242#article","name":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel? | Summa Lai","headline":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/cdn.extendoffice.com\/images\/stories\/doc-excel\/count-weekday-weekend\/doc-count-weekday-weekend-001.png","@id":"https:\/\/SUMMALAI.COM\/?p=3242\/#articleImage"},"datePublished":"2021-04-19T09:26:54-07:00","dateModified":"2021-04-20T10:12:53-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=3242#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=3242#webpage"},"articleSection":"Microsoft Family, Microsoft Office, Count The Number Of Weekdays, Count The Number Of Weekends"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=3242#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","position":3,"name":"Microsoft Office","item":"https:\/\/SUMMALAI.COM\/?cat=18","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3242#listItem","name":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3242#listItem","position":4,"name":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3242#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3242#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=3242#webpage","url":"https:\/\/SUMMALAI.COM\/?p=3242","name":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel? | Summa Lai","description":"Sometimes, we need to know how many specific weekdays between two dates. For example, I have two dates: the start date is 1\/1\/2014 and the end date is 2\/15\/2014, now I want to know how many times a Sunday or a Monday or a Tuesday etc occurs in this duration. Maybe this is somewhat difficult","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=3242#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2021-04-19T09:26:54-07:00","dateModified":"2021-04-20T10:12:53-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"3242","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65a0cba02fd81","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"locations":{"business":{"name":"","businessType":"","image":"","areaServed":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"streetLine1":"","streetLine2":"","zipCode":"","city":"","state":"","country":"","addressFormat":"#streetLineOne\n#streetLineTwo\n#city, #state #zipCode"},"contact":{"phone":"","email":"","fax":""},"ids":{"vat":"","tax":"","chamberOfCommerce":""},"payment":{"priceRange":"","currenciesAccepted":"","methods":""}}},"openingHours":{"useDefaults":true,"show":true,"alwaysOpen":false,"use24hFormat":false,"timezone":"","labels":{"closed":"","alwaysOpen":""},"days":{"monday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"tuesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"wednesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"thursday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"friday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"saturday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"sunday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"}}}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-04-19 00:48:49","updated":"2024-01-12 05:18:24","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=18\" title=\"Microsoft Office\">Microsoft Office<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"Microsoft Office","link":"https:\/\/SUMMALAI.COM\/?cat=18"},{"label":"How To Count The Number Of Weekends\/Weekdays Between Two Dates In Excel?","link":"https:\/\/SUMMALAI.COM\/?p=3242"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3242","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3242"}],"version-history":[{"count":4,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3242\/revisions"}],"predecessor-version":[{"id":3251,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3242\/revisions\/3251"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}