{"id":4357,"date":"2023-07-11T18:16:42","date_gmt":"2023-07-11T18:16:42","guid":{"rendered":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/"},"modified":"2023-07-11T18:16:42","modified_gmt":"2023-07-11T18:16:42","slug":"tabella-pivot-del-filtro-vba","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/","title":{"rendered":"Come filtrare le tabelle pivot utilizzando vba (con esempi)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u00c8 possibile utilizzare i seguenti metodi per filtrare le tabelle pivot in Excel utilizzando VBA:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Metodo 1: filtra la tabella pivot in base a un valore<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #0000ff;\">SubFilterPivotTable<\/span> ()\n   <span style=\"color: #0000ff;\">Dim<\/span> pf <span style=\"color: #0000ff;\">As<\/span> PivotField\n   <span style=\"color: #0000ff;\">Dim<\/span> myFilter <span style=\"color: #0000ff;\">As<\/span> String\n   <span style=\"color: #0000ff;\">Set<\/span> pf = ActiveSheet.PivotTables(\" <span style=\"color: #ff0000;\">PivotTable1<\/span> \").PivotFields(\" <span style=\"color: #ff0000;\">Position<\/span> \")\n   myFilter = ActiveWorkbook.Sheets(\" <span style=\"color: #ff0000;\">Sheet1<\/span> \").Range(\" <span style=\"color: #ff0000;\">J2<\/span> \").Value\n   pf.PivotFilters.Add2 xlCaptionEquals, , myFilter\n<span style=\"color: #0000ff;\">End Sub\n<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Questa particolare macro filtrer\u00e0 la tabella pivot denominata <strong>Tabella Pivot1<\/strong> per mostrare solo quelle righe in cui il valore nella colonna <strong>Posizione<\/strong> della tabella pivot \u00e8 uguale al valore nella cella <strong>J2<\/strong> di <strong>Foglio1<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Metodo 2: filtra la tabella pivot in base a pi\u00f9 valori<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #0000ff;\">Sub<\/span> FilterPivotTableMultiple()\n  <span style=\"color: #0000ff;\">Dim<\/span> v <span style=\"color: #0000ff;\">Ace<\/span> Variant\n  <span style=\"color: #0000ff;\">Dim<\/span> i <span style=\"color: #0000ff;\">As<\/span> Integer, j <span style=\"color: #0000ff;\">As<\/span> Integer\n  <span style=\"color: #0000ff;\">Dim<\/span> pf <span style=\"color: #0000ff;\">As<\/span> PivotField\n  <span style=\"color: #0000ff;\">Set<\/span> pf = ActiveSheet.PivotTables(\" <span style=\"color: #ff0000;\">PivotTable1<\/span> \").PivotFields(\" <span style=\"color: #ff0000;\">Position<\/span> \")\n  \n  <span style=\"color: #008000;\">'specify range with values to filter on<\/span>\n  v = Range(\" <span style=\"color: #ff0000;\">J2:J3<\/span> \")\n  \n  <span style=\"color: #008000;\">'clear existing filters<\/span>\n  pf.ClearAllFilters\n  \n  <span style=\"color: #008000;\">'apply filter to pivot table<\/span>\n  <span style=\"color: #0000ff;\">With<\/span> pf\n    <span style=\"color: #0000ff;\">For<\/span> i = 1 <span style=\"color: #0000ff;\">TB<\/span> pf.PivotItems.Count\n      j = 1\n      <span style=\"color: #0000ff;\">Do While<\/span> j &lt;= UBound(v, 1) - LBound(v, 1) + 1\n         <span style=\"color: #0000ff;\">If<\/span> pf.PivotItems(i).Name = v(j, 1) Then\n           pf.PivotItems(pf.PivotItems(i).Name).Visible = True\n           Exit Do\n        <span style=\"color: #0000ff;\">Else<\/span>\n          pf.PivotItems(pf.PivotItems(i).Name).Visible = False\n       <span style=\"color: #0000ff;\">End If<\/span>\n        j = j + 1\n      <span style=\"color: #0000ff;\">Loop<\/span>\n    <span style=\"color: #0000ff;\">Next<\/span> i\n <span style=\"color: #0000ff;\">End With<\/span>\n<span style=\"color: #0000ff;\">End Sub\n<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Questa particolare macro filtrer\u00e0 la tabella pivot denominata <strong>Tabella pivot1<\/strong> per visualizzare solo quelle righe in cui il valore nella colonna <strong>Posizione<\/strong> della tabella pivot \u00e8 uguale a uno dei valori nell&#8217;intervallo di celle <strong>J2:J3<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Metodo 3: rimuovere i filtri della tabella pivot<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #0000ff;\">SubClearPivotTableFilter<\/span> ()\n   <span style=\"color: #0000ff;\">Dim<\/span> pt <span style=\"color: #0000ff;\">As<\/span> PivotTable\n   <span style=\"color: #0000ff;\">Set<\/span> pt = ActiveSheet.PivotTables(\" <span style=\"color: #ff0000;\">PivotTable1<\/span> \")\n   pt.ClearAllFilters\n<span style=\"color: #0000ff;\">End Sub\n<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Questa particolare macro canceller\u00e0 tutti i filtri dalla tabella pivot denominata <strong>PivotTable1<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Gli esempi seguenti mostrano come utilizzare nella pratica ciascuno di questi metodi.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Esempio 1: filtra la tabella pivot in base a un valore<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Diciamo che abbiamo creato una tabella pivot da un set di dati in Excel per riassumere i punti segnati dai giocatori di basket di diverse squadre e posizioni:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-34210 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pf1.jpg\" alt=\"\" width=\"678\" height=\"392\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Diciamo che vogliamo filtrare la tabella pivot per mostrare solo le righe il cui valore nella colonna Posizione \u00e8 Guard.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per fare ci\u00f2 possiamo creare la seguente macro:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #0000ff;\">SubFilterPivotTable<\/span> ()\n   <span style=\"color: #0000ff;\">Dim<\/span> pf <span style=\"color: #0000ff;\">As<\/span> PivotField\n   <span style=\"color: #0000ff;\">Dim<\/span> myFilter <span style=\"color: #0000ff;\">As<\/span> String\n   <span style=\"color: #0000ff;\">Set<\/span> pf = ActiveSheet.PivotTables(\" <span style=\"color: #ff0000;\">PivotTable1<\/span> \").PivotFields(\" <span style=\"color: #ff0000;\">Position<\/span> \")\n   myFilter = ActiveWorkbook.Sheets(\" <span style=\"color: #ff0000;\">Sheet1<\/span> \").Range(\" <span style=\"color: #ff0000;\">J2<\/span> \").Value\n   pf.PivotFilters.Add2 xlCaptionEquals, , myFilter\n<span style=\"color: #0000ff;\">End Sub<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Quando eseguiamo questa macro, la tabella pivot viene automaticamente filtrata per mostrare solo le righe il cui valore nella colonna Posizione \u00e8 Guard:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-34211\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pf2.jpg\" alt=\"Tabella pivot dei filtri VBA\" width=\"644\" height=\"323\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">La tabella pivot \u00e8 stata filtrata per visualizzare solo le righe il cui valore nella colonna Posizione \u00e8 Guard.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Esempio 2: filtrare una tabella pivot in base a pi\u00f9 valori<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Supponiamo invece di voler filtrare la tabella pivot per mostrare solo le righe il cui valore nella colonna Posizione \u00e8 Guard <em>o<\/em> Center.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per fare ci\u00f2 possiamo creare la seguente macro:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #0000ff;\">Sub<\/span> FilterPivotTableMultiple()\n  <span style=\"color: #0000ff;\">Dim<\/span> v <span style=\"color: #0000ff;\">Ace<\/span> Variant\n  <span style=\"color: #0000ff;\">Dim<\/span> i <span style=\"color: #0000ff;\">As<\/span> Integer, j <span style=\"color: #0000ff;\">As<\/span> Integer\n  <span style=\"color: #0000ff;\">Dim<\/span> pf <span style=\"color: #0000ff;\">As<\/span> PivotField\n  <span style=\"color: #0000ff;\">Set<\/span> pf = ActiveSheet.PivotTables(\" <span style=\"color: #ff0000;\">PivotTable1<\/span> \").PivotFields(\" <span style=\"color: #ff0000;\">Position<\/span> \")\n  \n  <span style=\"color: #008000;\">'specify range with values to filter on<\/span>\n  v = Range(\" <span style=\"color: #ff0000;\">J2:J3<\/span> \")\n  \n  <span style=\"color: #008000;\">'clear existing filters<\/span>\n  pf.ClearAllFilters\n  \n  <span style=\"color: #008000;\">'apply filter to pivot table<\/span>\n  <span style=\"color: #0000ff;\">With<\/span> pf\n    <span style=\"color: #0000ff;\">For<\/span> i = 1 <span style=\"color: #0000ff;\">TB<\/span> pf.PivotItems.Count\n      j = 1\n      <span style=\"color: #0000ff;\">Do While<\/span> j &lt;= UBound(v, 1) - LBound(v, 1) + 1\n         <span style=\"color: #0000ff;\">If<\/span> pf.PivotItems(i).Name = v(j, 1) Then\n           pf.PivotItems(pf.PivotItems(i).Name).Visible = True\n           Exit Do\n        <span style=\"color: #0000ff;\">Else<\/span>\n          pf.PivotItems(pf.PivotItems(i).Name).Visible = False\n       <span style=\"color: #0000ff;\">End If<\/span>\n        j = j + 1\n      <span style=\"color: #0000ff;\">Loop<\/span>\n    <span style=\"color: #0000ff;\">Next<\/span> i\n <span style=\"color: #0000ff;\">End With<\/span>\n<span style=\"color: #0000ff;\">End Sub<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Quando eseguiamo questa macro, la tabella pivot viene automaticamente filtrata per mostrare solo le righe il cui valore nella colonna Posizione \u00e8 Guard o Center:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-34212\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pf3.jpg\" alt=\"Tabella pivot del filtro VBA basata su pi\u00f9 valori\" width=\"647\" height=\"356\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">La tabella pivot \u00e8 stata filtrata per mostrare solo le righe il cui valore nella colonna Posizione \u00e8 Guardia o Centro.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Risorse addizionali<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">I seguenti tutorial spiegano come eseguire altre attivit\u00e0 comuni in VBA:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/it\/vba-aggiorna-la-tabella-pivot\/\" target=\"_blank\" rel=\"noopener\">VBA: come aggiornare le tabelle pivot<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/vba-rimuove-i-duplicati\/\" target=\"_blank\" rel=\"noopener\">VBA: come rimuovere valori duplicati<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/righe-di-conteggio-vba-nellintervallo\/\" target=\"_blank\" rel=\"noopener\">VBA: come contare il numero di righe nell&#8217;intervallo<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00c8 possibile utilizzare i seguenti metodi per filtrare le tabelle pivot in Excel utilizzando VBA: Metodo 1: filtra la tabella pivot in base a un valore SubFilterPivotTable () Dim pf As PivotField Dim myFilter As String Set pf = ActiveSheet.PivotTables(&#8221; PivotTable1 &#8220;).PivotFields(&#8221; Position &#8220;) myFilter = ActiveWorkbook.Sheets(&#8221; Sheet1 &#8220;).Range(&#8221; J2 &#8220;).Value pf.PivotFilters.Add2 xlCaptionEquals, , myFilter [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-11T18:16:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pf1.jpg\" \/>\n<meta name=\"author\" content=\"Benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/\",\"url\":\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/\",\"name\":\"Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-11T18:16:42+00:00\",\"dateModified\":\"2023-07-11T18:16:42+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come filtrare le tabelle pivot utilizzando vba (con esempi)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/it\/#website\",\"url\":\"https:\/\/statorials.org\/it\/\",\"name\":\"Statorials\",\"description\":\"La tua guida all&#039;alfabetizzazione statistica!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/it\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\",\"name\":\"Benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Benjamin anderson\"},\"description\":\"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9\",\"sameAs\":[\"https:\/\/statorials.org\/it\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials","description":"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.","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:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/","og_locale":"it_IT","og_type":"article","og_title":"Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials","og_description":"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.","og_url":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/","og_site_name":"Statorials","article_published_time":"2023-07-11T18:16:42+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pf1.jpg"}],"author":"Benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Benjamin anderson","Est. reading time":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/","url":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/","name":"Come filtrare le tabelle pivot utilizzando VBA (con esempi) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-11T18:16:42+00:00","dateModified":"2023-07-11T18:16:42+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come filtrare le tabelle pivot in Excel utilizzando VBA, con diversi esempi.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/tabella-pivot-del-filtro-vba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come filtrare le tabelle pivot utilizzando vba (con esempi)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/it\/#website","url":"https:\/\/statorials.org\/it\/","name":"Statorials","description":"La tua guida all&#039;alfabetizzazione statistica!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/it\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae","name":"Benjamin anderson","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Benjamin anderson"},"description":"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9","sameAs":["https:\/\/statorials.org\/it"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/4357"}],"collection":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/comments?post=4357"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/4357\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=4357"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=4357"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=4357"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}