{"id":4791,"date":"2023-07-07T22:15:14","date_gmt":"2023-07-07T22:15:14","guid":{"rendered":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/"},"modified":"2023-07-07T22:15:14","modified_gmt":"2023-07-07T22:15:14","slug":"excel-definir-valores-minimo-e-maximo","status":"publish","type":"post","link":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/","title":{"rendered":"Excel: como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Voc\u00ea pode usar os seguintes m\u00e9todos para definir um limite nos valores m\u00ednimo e m\u00e1ximo que podem ser retornados por f\u00f3rmulas no Excel:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>M\u00e9todo 1: Defina o valor m\u00ednimo<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MAX(300,(SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Esta f\u00f3rmula espec\u00edfica calcula a soma dos valores no intervalo <strong>B2:D2<\/strong> , mas se a soma for menor que 300, a f\u00f3rmula simplesmente retorna <strong>300<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>M\u00e9todo 2: Defina o valor m\u00e1ximo<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MIN(300,(SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Esta f\u00f3rmula espec\u00edfica calcula a soma dos valores no intervalo <strong>B2:D2<\/strong> , mas se a soma for maior que 300, a f\u00f3rmula simplesmente retorna <strong>300<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>M\u00e9todo 3: definir valores m\u00ednimos e m\u00e1ximos<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MIN(320,MAX(280,SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Esta f\u00f3rmula espec\u00edfica calcula a soma dos valores no intervalo <strong>B2:D2<\/strong> , mas se a soma for menor que <strong>280<\/strong> ou maior que <strong>320<\/strong> , a f\u00f3rmula simplesmente retorna esses limites inferiores ou superiores.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Os exemplos a seguir mostram como usar cada m\u00e9todo na pr\u00e1tica com o seguinte conjunto de dados no Excel que cont\u00e9m informa\u00e7\u00f5es sobre os resultados dos exames de diferentes alunos em uma turma:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-37386 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up1.png\" alt=\"\" width=\"520\" height=\"453\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <strong>Exemplo 1: Defina o valor m\u00ednimo que pode ser retornado por uma f\u00f3rmula<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Suponha que queremos calcular a soma das notas dos exames de cada aluno, mas queremos que o valor m\u00ednimo seja definido como 300.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Podemos digitar a seguinte f\u00f3rmula na c\u00e9lula <strong>E2<\/strong> :<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MAX(300,(SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/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-37387\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up2.png\" alt=\"Excel define valor m\u00ednimo na f\u00f3rmula\" width=\"554\" height=\"413\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">A f\u00f3rmula retorna a soma dos resultados do exame ou o valor 300 se a soma for menor que 300.<\/span><\/p>\n<h2> <strong>Exemplo 2: Defina o valor m\u00e1ximo que pode ser retornado pela f\u00f3rmula<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Suponha que queremos calcular a soma das notas dos exames de cada aluno, mas queremos que o valor m\u00e1ximo seja definido como 300.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Podemos digitar a seguinte f\u00f3rmula na c\u00e9lula <strong>E2<\/strong> :<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MIN(300,(SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/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-37388\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up3.png\" alt=\"Excel define valor m\u00e1ximo na f\u00f3rmula\" width=\"589\" height=\"436\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">A f\u00f3rmula retorna a soma dos resultados do exame ou o valor 300 se a soma for maior que 300.<\/span><\/p>\n<h2> <strong>Exemplo 3: Defina os valores m\u00ednimo e m\u00e1ximo que podem ser retornados por uma f\u00f3rmula<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Suponha que queremos calcular a soma das notas dos exames de cada aluno, mas queremos que os valores m\u00ednimo e m\u00e1ximo sejam definidos como 280 e 300, respectivamente.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Podemos digitar a seguinte f\u00f3rmula na c\u00e9lula <strong>E2<\/strong> :<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=MIN(320,MAX(280,SUM( <span style=\"color: #3366ff;\">B2:D2<\/span> )))<\/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-37389\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up4.png\" alt=\"Excel define valores m\u00ednimos e m\u00e1ximos na f\u00f3rmula\" width=\"602\" height=\"429\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">A f\u00f3rmula retorna a soma dos resultados do exame ou o valor 280 ou 320 se a soma estiver fora desses limites.<\/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 tarefas comuns no Excel:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/pt\/excel-destaca-o-valor-maximo-em-cada-linha\/\" target=\"_blank\" rel=\"noopener\">Excel: como destacar o valor m\u00e1ximo em cada linha<\/a><br \/> <a href=\"https:\/\/statorials.org\/pt\/grafico-excel-min-max-media\/\" target=\"_blank\" rel=\"noopener\">Excel: como criar um gr\u00e1fico m\u00ednimo, m\u00e1ximo e m\u00e9dio<\/a><br \/><a href=\"https:\/\/statorials.org\/pt\/valor-maximo-do-excel-por-grupo\/\" target=\"_blank\" rel=\"noopener\">Excel: Como encontrar o valor m\u00e1ximo por grupo<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Voc\u00ea pode usar os seguintes m\u00e9todos para definir um limite nos valores m\u00ednimo e m\u00e1ximo que podem ser retornados por f\u00f3rmulas no Excel: M\u00e9todo 1: Defina o valor m\u00ednimo =MAX(300,(SUM( B2:D2 ))) Esta f\u00f3rmula espec\u00edfica calcula a soma dos valores no intervalo B2:D2 , mas se a soma for menor que 300, a f\u00f3rmula simplesmente [&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-4791","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 definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.\" \/>\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-definir-valores-minimo-e-maximo\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel: Como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-07T22:15:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up1.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=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/\",\"url\":\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/\",\"name\":\"Excel: Como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/pt\/#website\"},\"datePublished\":\"2023-07-07T22:15:14+00:00\",\"dateModified\":\"2023-07-07T22:15:14+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666\"},\"description\":\"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Lar\",\"item\":\"https:\/\/statorials.org\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel: como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas\"}]},{\"@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 definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials","description":"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.","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-definir-valores-minimo-e-maximo\/","og_locale":"pt_PT","og_type":"article","og_title":"Excel: Como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials","og_description":"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.","og_url":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/","og_site_name":"Statorials","article_published_time":"2023-07-07T22:15:14+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/up1.png"}],"author":"Dr. benjamim anderson","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Dr. benjamim anderson","Tempo estimado de leitura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/","url":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/","name":"Excel: Como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/pt\/#website"},"datePublished":"2023-07-07T22:15:14+00:00","dateModified":"2023-07-07T22:15:14+00:00","author":{"@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666"},"description":"Este tutorial explica como definir valores m\u00ednimos ou m\u00e1ximos em f\u00f3rmulas do Excel, com diversos exemplos.","breadcrumb":{"@id":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/pt\/excel-definir-valores-minimo-e-maximo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Lar","item":"https:\/\/statorials.org\/pt\/"},{"@type":"ListItem","position":2,"name":"Excel: como definir valores m\u00ednimos e m\u00e1ximos em f\u00f3rmulas"}]},{"@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\/4791","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=4791"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts\/4791\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/media?parent=4791"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/categories?post=4791"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/tags?post=4791"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}