{"id":1366,"date":"2015-04-16T18:01:59","date_gmt":"2015-04-16T09:01:59","guid":{"rendered":"http:\/\/excelwork.info\/excel\/?p=1366"},"modified":"2015-04-16T18:01:59","modified_gmt":"2015-04-16T09:01:59","slug":"function_yearmonthday","status":"publish","type":"post","link":"https:\/\/excelwork.info\/excel\/function_yearmonthday\/","title":{"rendered":"\u65e5\u4ed8\u6642\u523b\uff1a\u5e74\u30fb\u6708\u30fb\u65e5\u3092\u53d6\u5f97\uff08Year\u3001Month\u3001Day \u95a2\u6570\uff09"},"content":{"rendered":"<h2>\u65e5\u4ed8\u304b\u3089\u5e74\u30fb\u6708\u30fb\u65e5\u3092\u53d6\u5f97\u3059\u308b\u95a2\u6570<\/h2>\n<div class=\"m30-l\">\n<br \/><\/p>\n<div class=\"kkbox\"><strong>\u3010\u66f8\u5f0f\u3011<\/strong><\/p>\n<p><em>date_year<\/em> = <strong>Year<\/strong> ( <em>date<\/em> )<\/p>\n<p><em>date_month<\/em> = <strong>Month<\/strong> ( <em>date<\/em> )<\/p>\n<p><em>date_day<\/em> = <strong>Day<\/strong> ( <em>date<\/em> )<\/p>\n<\/div>\n<br \/>\n<h3>\u3010\u5f15\u6570\u30fb\u623b\u308a\u5024\u3011<\/h3>\n<ul style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;\">\n<li>date&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u65e5\u4ed8\u3092\u3042\u3089\u308f\u3059\u5024\u30fb\u6587\u5b57\u5217\u30fb\u6570\u5f0f<\/li>\n<li>date_year&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u5e74\u3092\u8868\u3059\u30d0\u30ea\u30a2\u30f3\u30c8\u578b\uff08\u5185\u90e8\u51e6\u7406\u5f62\u5f0f Integer\uff09\u306e\u5024<\/li>\n<li>date_month&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u6708\uff081\uff5e12 \u306e\u7bc4\u56f2\u306e\u6574\u6570\uff09\u3092\u8868\u3059\u30d0\u30ea\u30a2\u30f3\u30c8\u578b\uff08\u5185\u90e8\u51e6\u7406\u5f62\u5f0f Integer\uff09\u306e\u5024<\/li>\n<li>date_day&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u65e5\uff081\uff5e31 \u306e\u7bc4\u56f2\u306e\u6574\u6570\uff09\u3092\u8868\u3059\u30d0\u30ea\u30a2\u30f3\u30c8\u578b\uff08\u5185\u90e8\u51e6\u7406\u5f62\u5f0f Integer\uff09\u306e\u5024<\/li>\n<\/ul>\n<br \/>\n<p class=\"caution4\">\u5f15\u6570\u306e <em>date<\/em> \u306b\u6709\u52b9\u3067\u306a\u3044\u5024\u3092\u6307\u5b9a\u3059\u308b\u3068\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<\/div>\n<br \/><br \/>\n<h2>\u65e5\u4ed8\u304b\u3089\u5e74\u30fb\u6708\u30fb\u65e5\u3092\u53d6\u5f97\u3059\u308b\u95a2\u6570\u306e\u4f7f\u7528\u4f8b<\/h2>\n<div class=\"m30-l\">\n<h3 id=\"vba_sample\">\u30b5\u30f3\u30d7\u30ebVBA\u30bd\u30fc\u30b9<\/h3>\n<pre class=\"lang:vb mark:0 decode:true \" title=\"\u65e5\u4ed8\u304b\u3089\u5e74\u30fb\u6708\u30fb\u65e5\u3092\u53d6\u5f97\u3059\u308b\u95a2\u6570\u306e\u4f7f\u7528\u4f8b\" data-url=\"http:\/\/example.co.jp\" >\r\n\u3000\r\nSub Sample_YearMonthDay()\r\n\r\n    Dim myDate1, myDate2, myDate3, myDate4, mydate5\r\n    Dim myNumber As Long\r\n    \r\n    myDate1 = \"2015\u5e7410\u67081\u65e5\"\r\n    myDate2 = #11\/30\/1999#\r\n    myDate3 = \"2000-2-1\"\r\n    myDate4 = \"H23\/5\/20\"\r\n    mydate5 = \"\u662d\u548c59\u5e748\u670825\u65e5\"\r\n    myNumber = 36955\r\n    \r\n    Debug.Print Year(myDate1)\r\n    Debug.Print Year(myDate2)\r\n    Debug.Print Year(myDate3)\r\n    Debug.Print Year(myDate4)\r\n    Debug.Print Year(mydate5)\r\n    Debug.Print Year(myNumber)\r\n    Debug.Print Year(0)\r\n    \r\n    Debug.Print\r\n    \r\n    Debug.Print Month(myDate1)\r\n    Debug.Print Month(myDate2)\r\n    Debug.Print Month(myDate3)\r\n    Debug.Print Month(myDate4)\r\n    Debug.Print Month(mydate5)\r\n    Debug.Print Month(myNumber)\r\n    Debug.Print Month(0)\r\n    \r\n    Debug.Print\r\n    \r\n    Debug.Print Day(myDate1)\r\n    Debug.Print Day(myDate2)\r\n    Debug.Print Day(myDate3)\r\n    Debug.Print Day(myDate4)\r\n    Debug.Print Day(mydate5)\r\n    Debug.Print Day(myNumber)\r\n    Debug.Print Day(0)\r\n\r\nEnd Sub\r\n\r\n\u3000\r\n<\/pre>\n<br \/>\n<h3>\u5b9f\u884c\u7d50\u679c<\/h3>\n<p><a href=\"https:\/\/i0.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01.jpg?ssl=1\" rel=\"lightbox[1366]\"><img loading=\"lazy\" src=\"https:\/\/i0.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01.jpg?resize=400%2C374&#038;ssl=1\" alt=\"Year Month Day \u95a2\u6570\u4f7f\u7528\u4f8b\" width=\"400\" height=\"374\" class=\"alignnone size-medium wp-image-1372\" srcset=\"https:\/\/i0.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01.jpg?resize=400%2C374&amp;ssl=1 400w, https:\/\/i0.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01.jpg?resize=580%2C542&amp;ssl=1 580w, https:\/\/i0.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01.jpg?w=640&amp;ssl=1 640w\" sizes=\"(max-width: 400px) 100vw, 400px\" data-recalc-dims=\"1\" \/><\/a><\/p>\n<br \/><\/div>\n<br \/><br \/>\n","protected":false},"excerpt":{"rendered":"<p>\u65e5\u4ed8\u304b\u3089\u5e74\u30fb\u6708\u30fb\u65e5\u3092\u53d6\u5f97\u3059\u308b\u95a2\u6570 \u3010\u66f8\u5f0f\u3011 date_year = Year ( &#8230; <\/p>\n","protected":false},"author":1,"featured_media":1375,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"amp_status":"","spay_email":"","jetpack_publicize_message":""},"categories":[37],"tags":[121,120,63,119,38,118],"jetpack_featured_media_url":"https:\/\/i1.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/04\/yearmonthday01-400x3741.jpg?fit=400%2C374&ssl=1","jetpack_publicize_connections":[],"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p4Ye9i-m2","_links":{"self":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1366"}],"collection":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/comments?post=1366"}],"version-history":[{"count":8,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1366\/revisions"}],"predecessor-version":[{"id":1376,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1366\/revisions\/1376"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/media\/1375"}],"wp:attachment":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/media?parent=1366"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/categories?post=1366"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/tags?post=1366"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}