{"id":5052,"date":"2023-07-04T13:11:27","date_gmt":"2023-07-04T13:11:27","guid":{"rendered":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/"},"modified":"2023-07-04T13:11:27","modified_gmt":"2023-07-04T13:11:27","slug":"excel-vlookup-sim-ou-nao","status":"publish","type":"post","link":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/","title":{"rendered":"Excel: como usar vlookup para retornar sim ou n\u00e3o"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Voc\u00ea pode usar a seguinte f\u00f3rmula <strong>VLOOKUP<\/strong> no Excel para tentar encontrar um valor espec\u00edfico em um intervalo e retornar \u201cSim\u201d ou \u201cN\u00e3o\u201d para indicar se o valor espec\u00edfico existe ou n\u00e3o no intervalo:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(ISNA(VLOOKUP( <span style=\"color: #3366ff;\">D2<\/span> , <span style=\"color: #ff0000;\">$A$2:$A$11<\/span> ,1,FALSE)), \"No\", \"Yes\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Esta f\u00f3rmula espec\u00edfica tenta pesquisar o valor espec\u00edfico na c\u00e9lula <strong>D2<\/strong> no intervalo <strong>A2:A11<\/strong> e retorna \u201cSim\u201d ou \u201cN\u00e3o\u201d para indicar se o valor espec\u00edfico existe ou n\u00e3o no intervalo de pesquisa.<\/span><\/p>\n<p> <span style=\"color: #000000;\">O exemplo a seguir mostra como usar esta f\u00f3rmula na pr\u00e1tica.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Exemplo: use VLOOKUP para retornar Sim ou N\u00e3o no Excel<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Digamos que temos uma lista de times na coluna A do Excel e outra lista de times favoritos de algu\u00e9m na coluna D:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-39383 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vyes1.png\" alt=\"\" width=\"462\" height=\"416\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Suponha que queremos verificar se cada time da lista <strong>de times favoritos<\/strong> existe ou n\u00e3o na lista maior de times.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Para fazer isso, podemos digitar a seguinte f\u00f3rmula na c\u00e9lula <strong>E2<\/strong> :<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(ISNA(VLOOKUP( <span style=\"color: #3366ff;\">D2<\/span> , <span style=\"color: #ff0000;\">$A$2:$A$11<\/span> ,1,FALSE)), \"No\", \"Yes\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Podemos ent\u00e3o clicar e arrastar esta f\u00f3rmula para cada c\u00e9lula restante na coluna E:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39384\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vyes2.png\" alt=\"Excel VLOOKUP retorna sim ou n\u00e3o\" width=\"626\" height=\"394\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">A coluna E retorna &#8220;Sim&#8221; ou &#8220;N\u00e3o&#8221; para indicar se cada time na coluna <strong>Time Favorito<\/strong> existe ou n\u00e3o na coluna A.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Por exemplo:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>Thunder<\/strong> existe na coluna Equipe, ent\u00e3o a f\u00f3rmula VLOOKUP retorna <strong>Yes<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\"><b>Cavs<\/b> n\u00e3o existe na coluna Equipe, ent\u00e3o a f\u00f3rmula VLOOKUP retorna <strong>N\u00e3o.<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">E assim por diante.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Como funciona essa f\u00f3rmula?<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Lembre-se da f\u00f3rmula que usamos para encontrar o nome da equipe na c\u00e9lula <strong>D2<\/strong> no intervalo <strong>A2:A11:<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(ISNA(VLOOKUP( <span style=\"color: #3366ff;\">D2<\/span> , <span style=\"color: #ff0000;\">$A$2:$A$11<\/span> ,1,FALSE)), \"No\", \"Yes\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Veja como essa f\u00f3rmula funciona:<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\">Primeiro, usamos <strong>VLOOKUP<\/strong> para tentar encontrar o valor na c\u00e9lula <strong>D2<\/strong> (&#8220;Thunder&#8221;) no intervalo <strong>A2:A11<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Isso retornar\u00e1 <strong>Thunder<\/strong> ou <strong>#N\/A<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">A seguir, usamos a fun\u00e7\u00e3o <strong>ISNA<\/strong> para verificar se <strong>VLOOKUP<\/strong> retornou <strong>#N\/A<\/strong> ou n\u00e3o.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Isso retornar\u00e1 <strong>TRUE<\/strong> ou <strong>FALSE<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Finalmente, usamos a fun\u00e7\u00e3o <strong>IF<\/strong> para retornar &#8220;No&#8221; se a fun\u00e7\u00e3o <strong>ISNA<\/strong> for avaliada como <strong>TRUE<\/strong> ou retornar &#8220;Yes&#8221; se a fun\u00e7\u00e3o <strong>ISNA<\/strong> for avaliada como <strong>FALSE<\/strong> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Recursos adicionais<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Os tutoriais a seguir explicam como realizar outras opera\u00e7\u00f5es comuns no Excel:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/pt\/excel-vlookup-retorna-vazio-em-vez-de-na\/\" target=\"_blank\" rel=\"noopener\">Excel: Use VLOOKUP para retornar espa\u00e7o em branco em vez de #N\/A<\/a><br \/> <a href=\"https:\/\/statorials.org\/pt\/excel-vlookup-encontrar-valor-entre-o-intervalo\/\" target=\"_blank\" rel=\"noopener\">Excel: use VLOOKUP para encontrar um valor entre o intervalo<\/a><br \/> <a href=\"https:\/\/statorials.org\/pt\/excel-vlookup-ultimo-valor-na-coluna\/\" target=\"_blank\" rel=\"noopener\">Excel: use VLOOKUP para retornar o \u00faltimo valor correspondente<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Voc\u00ea pode usar a seguinte f\u00f3rmula VLOOKUP no Excel para tentar encontrar um valor espec\u00edfico em um intervalo e retornar \u201cSim\u201d ou \u201cN\u00e3o\u201d para indicar se o valor espec\u00edfico existe ou n\u00e3o no intervalo: =IF(ISNA(VLOOKUP( D2 , $A$2:$A$11 ,1,FALSE)), &#8220;No&#8221;, &#8220;Yes&#8221;) Esta f\u00f3rmula espec\u00edfica tenta pesquisar o valor espec\u00edfico na c\u00e9lula D2 no intervalo A2:A11 [&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":[],"class_list":["post-5052","post","type-post","status-publish","format-standard","hentry","category-guia"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia<\/title>\n<meta name=\"description\" content=\"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.\" \/>\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\/pt\/excel-vlookup-sim-ou-nao\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia\" \/>\n<meta property=\"og:description\" content=\"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-04T13:11:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vyes1.png\" \/>\n<meta name=\"author\" content=\"Dr. benjamim anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. benjamim anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/\",\"url\":\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/\",\"name\":\"Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/pt\/#website\"},\"datePublished\":\"2023-07-04T13:11:27+00:00\",\"dateModified\":\"2023-07-04T13:11:27+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666\"},\"description\":\"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Lar\",\"item\":\"https:\/\/statorials.org\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel: como usar vlookup para retornar sim ou n\u00e3o\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/pt\/#website\",\"url\":\"https:\/\/statorials.org\/pt\/\",\"name\":\"Statorials\",\"description\":\"O seu guia para a literacia estat\u00edstica!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/pt\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-PT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666\",\"name\":\"Dr. benjamim anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-PT\",\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. benjamim anderson\"},\"description\":\"Ol\u00e1, sou Benjamin, um professor aposentado de estat\u00edstica que se tornou professor dedicado na Statorials. Com vasta experi\u00eancia e conhecimento na \u00e1rea de estat\u00edstica, estou empenhado em compartilhar meu conhecimento para capacitar os alunos por meio de Statorials. Saber mais\",\"sameAs\":[\"https:\/\/statorials.org\/pt\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia","description":"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.","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\/pt\/excel-vlookup-sim-ou-nao\/","og_locale":"pt_PT","og_type":"article","og_title":"Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia","og_description":"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.","og_url":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/","og_site_name":"Statorials","article_published_time":"2023-07-04T13:11:27+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vyes1.png"}],"author":"Dr. benjamim anderson","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Dr. benjamim anderson","Tempo estimado de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/","url":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/","name":"Excel: Como usar VLOOKUP para retornar sim ou n\u00e3o \u2013 Estatologia","isPartOf":{"@id":"https:\/\/statorials.org\/pt\/#website"},"datePublished":"2023-07-04T13:11:27+00:00","dateModified":"2023-07-04T13:11:27+00:00","author":{"@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666"},"description":"Este tutorial explica como usar a fun\u00e7\u00e3o VLOOKUP no Excel para encontrar um valor e retornar sim ou n\u00e3o de acordo, com um exemplo.","breadcrumb":{"@id":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/pt\/excel-vlookup-sim-ou-nao\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Lar","item":"https:\/\/statorials.org\/pt\/"},{"@type":"ListItem","position":2,"name":"Excel: como usar vlookup para retornar sim ou n\u00e3o"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/pt\/#website","url":"https:\/\/statorials.org\/pt\/","name":"Statorials","description":"O seu guia para a literacia estat\u00edstica!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/pt\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-PT"},{"@type":"Person","@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666","name":"Dr. benjamim anderson","image":{"@type":"ImageObject","inLanguage":"pt-PT","@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr. benjamim anderson"},"description":"Ol\u00e1, sou Benjamin, um professor aposentado de estat\u00edstica que se tornou professor dedicado na Statorials. Com vasta experi\u00eancia e conhecimento na \u00e1rea de estat\u00edstica, estou empenhado em compartilhar meu conhecimento para capacitar os alunos por meio de Statorials. Saber mais","sameAs":["https:\/\/statorials.org\/pt"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts\/5052","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/comments?post=5052"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts\/5052\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/media?parent=5052"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/categories?post=5052"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/tags?post=5052"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}