{"id":666,"date":"2023-09-29T00:29:07","date_gmt":"2023-09-29T00:29:07","guid":{"rendered":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/"},"modified":"2023-12-10T11:52:19","modified_gmt":"2023-12-10T11:52:19","slug":"%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/","title":{"rendered":"\u5982\u4f55\u901a\u8fc7vba\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f"},"content":{"rendered":"<div class=\"excel-\" id=\"excel-2011793104\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <h2 class=\"wp-block-heading\">VBA\u9690\u85cf\u5c5e\u6027<\/h2><p>\u8981\u4f7f\u7528 VBA \u9690\u85cf\/\u663e\u793a Excel \u4e2d\u7684\u5217\u6216\u884c\uff0c\u53ef\u4ee5\u4f7f\u7528\u201c\u9690\u85cf\u201d\u5c5e\u6027\u3002\u8981\u4f7f\u7528\u6b64\u5c5e\u6027\uff0c\u5fc5\u987b\u4f7f\u7528<a href=\"https:\/\/exceladvisor.org\/cn\/\u8303\u56f4-1\/\">\u8303\u56f4\u5bf9\u8c61<\/a>\u6307\u5b9a\u5217\u6216\u884c\uff0c\u7136\u540e\u6307\u5b9a TRUE\/FALSE\u3002<\/p><ol type=\"1\"><li>\u4f7f\u7528\u8303\u56f4\u5bf9\u8c61\u6307\u5b9a\u5217\u6216\u884c\u3002<\/li><li>\u4e4b\u540e\uff0c\u4f7f\u7528\u6574\u4e2a\u5217\/\u884c\u5c5e\u6027\u6765\u5f15\u7528\u6574\u4e2a\u884c\u6216\u5217\u3002<\/li><li>\u7136\u540e\u4f7f\u7528\u9690\u85cf\u5c5e\u6027\u3002<\/li><li>\u6700\u540e\uff0c\u6307\u5b9a\u771f\/\u5047\u3002<\/li><\/ol><p>\u8fd9\u662f\u8981\u8003\u8651\u7684\u793a\u4f8b\uff1a <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61436\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png\" sizes=\"auto, \" srcset=\"\" alt=\"VBA-\u9690\u85cf\u5c5e\u6027\" width=\"535\" height=\"297\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'hide the column A Range(\"A:A\").EntireColumn.Hidden = True 'hide the row 1 Range(\"1:1\").EntireRow.Hidden = True End Sub<\/code><\/pre><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528\u9690\u85cf\u5c5e\u6027\u6765\u9690\u85cf A \u5217\u548c 1 \u884c\u3002\u4e0b\u9762\u662f\u663e\u793a\u5b83\u4eec\u7684\u4ee3\u7801\u3002<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'unhide the column A Range(\"A:A\").EntireColumn.Hidden = False 'unhide the row 1 Range(\"1:1\").EntireRow.Hidden = False End Sub<\/code><\/pre><h2 class=\"wp-block-heading\">\u9690\u85cf\/\u663e\u793a\u591a\u884c\u548c\u591a\u5217VBA<\/h2><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'hide the column A to c Range(\"A:C\").EntireColumn.Hidden = True 'hide the row 1 to 4 Range(\"1:4\").EntireRow.Hidden = True End Sub<\/code><\/pre><p>\u540c\u6837\uff0c\u5982\u679c\u4f60\u60f3\u663e\u793a\u591a\u884c\u548c\u591a\u5217\u3002<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'hide the column A to c Range(\"A:C\").EntireColumn.Hidden = False 'hide the row 1 to 4 Range(\"1:4\").EntireRow.Hidden = False End Sub<\/code><\/pre><h2 class=\"wp-block-heading\">\u9690\u85cf\u6240\u6709\u5217\u548c\u884c<\/h2><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'hide the column A Columns.EntireColumn.Hidden = True 'hide the row 1 Rows.EntireRow.Hidden = True End Sub<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61437\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-masquer-toutes-les-colonnes-et-lignes.png\" sizes=\"auto, \" srcset=\"\" alt=\"\u9690\u85cf\u6240\u6709\u5217\u548c\u884c\" width=\"558\" height=\"330\"><\/figure><\/div><h2 class=\"wp-block-heading\">\u663e\u793a\u6240\u6709\u5217\u548c\u884c<\/h2><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'unhide all the columns Columns.EntireColumn.Hidden = False 'unhide all the rows Rows.EntireRow.Hidden = False End Sub<\/code><\/pre><h2 class=\"wp-block-heading\">\u9690\u85cf\/\u663e\u793a\u53e6\u4e00\u4e2a\u5de5\u4f5c\u8868\u4e2d\u7684\u5217\u548c\u884c<\/h2><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_hide_row_columns() 'hide all columns in the sheet 1 Worksheets(\"Sheet1\").Columns.EntireColumn.Hidden = False 'hide all rows in the sheet 1 Worksheets(\"Sheet1\").Rows.EntireRow.Hidden = False End Sub<\/code><\/pre><div class=\"gb-container gb-container-4db6181c gb-container-mt\"><a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/cn\/\u7ef4\u5df4\/\">\u4ec0\u4e48\u662fVBA<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\">\u76f8\u5173\u6559\u7a0b<\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u884c\u6570\/\">\u5728 Excel \u4e2d\u4f7f\u7528 VBA \u8ba1\u7b97\u884c\u6570<\/a><\/li><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u5b57\u7b26\u5b57\u4f53\/\">Excel VBA \u5b57\u4f53\uff08\u989c\u8272\u3001\u5927\u5c0f\u3001\u7c7b\u578b\u548c\u7c97\u4f53\uff09<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/cn\/\u8303\u56f4-1\/\">Excel VBA \u8303\u56f4 \u2013 \u4f7f\u7528\u8303\u56f4\u548c\u5355\u5143\u683c<\/a><\/li><li>\u5728 Excel \u4e2d\u4f7f\u7528 VBA \u5c06\u8fb9\u6846\u5e94\u7528\u4e8e\u5355\u5143\u683c<\/li><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u627e\u5230\u6700\u540e\u4e00\u884c\u7684\u5355\u5143\u683c\/\">\u5728 Excel \u4e2d\u4f7f\u7528 VBA \u67e5\u627e\u6700\u540e\u4e00\u884c\u3001\u6700\u540e\u4e00\u5217\u548c\u5355\u5143\u683c<\/a><\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-50067b57\"><div class=\"gb-container gb-container-50067b57\"><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-666","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f<\/title>\n<meta name=\"description\" content=\"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/cn\/\u9690\u85cf\u663e\u793a\u5217\u884c\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f\" \/>\n<meta property=\"og:description\" content=\"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/cn\/\u9690\u85cf\u663e\u793a\u5217\u884c\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T11:52:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/\",\"url\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/\",\"name\":\"\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png\",\"datePublished\":\"2023-09-29T00:29:07+00:00\",\"dateModified\":\"2023-12-10T11:52:19+00:00\",\"description\":\"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u5bb6\",\"item\":\"https:\/\/exceladvisor.org\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5982\u4f55\u901a\u8fc7vba\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#website\",\"url\":\"https:\/\/exceladvisor.org\/cn\/\",\"name\":\"Excel Advisor\",\"description\":\"\u60a8\u7684\u6570\u636e\u7edf\u6cbb\u7ec8\u6781\u6307\u5357\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/cn\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f","description":"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9","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:\/\/exceladvisor.org\/cn\/\u9690\u85cf\u663e\u793a\u5217\u884c\/","og_locale":"zh_CN","og_type":"article","og_title":"\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f","og_description":"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9","og_url":"https:\/\/exceladvisor.org\/cn\/\u9690\u85cf\u663e\u793a\u5217\u884c\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T11:52:19+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/","url":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/","name":"\u25b7 \u5982\u4f55\u901a\u8fc7VBA\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f","isPartOf":{"@id":"https:\/\/exceladvisor.org\/cn\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png","datePublished":"2023-09-29T00:29:07+00:00","dateModified":"2023-12-10T11:52:19+00:00","description":"\u5728\u672c VBA \u6559\u7a0b\u4e2d\uff0c\u6211\u4eec\u5c06\u5b66\u4e60\u5982\u4f55\u4f7f\u7528 VBA \u4ee3\u7801\u9690\u85cf\u548c\u663e\u793a\u5217\u548c\u884c\uff0c\u6211\u4eec\u5c06\u7f16\u5199\u4ee5\u4e0b\u5185\u5bb9","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-propriete-cachee-vba.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/cn\/%e9%9a%90%e8%97%8f%e6%98%be%e7%a4%ba%e5%88%97%e8%a1%8c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u5bb6","item":"https:\/\/exceladvisor.org\/cn\/"},{"@type":"ListItem","position":2,"name":"\u5982\u4f55\u901a\u8fc7vba\u9690\u85cf\/\u663e\u793a\u5217\/\u884c\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/cn\/#website","url":"https:\/\/exceladvisor.org\/cn\/","name":"Excel Advisor","description":"\u60a8\u7684\u6570\u636e\u7edf\u6cbb\u7ec8\u6781\u6307\u5357","publisher":{"@id":"https:\/\/exceladvisor.org\/cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/cn\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/cn\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/comments?post=666"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/666\/revisions"}],"predecessor-version":[{"id":1462,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/666\/revisions\/1462"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/media?parent=666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}