|
Min (Function) In french: Min
// Smallest value? ResMin = Min(10, 15, 20) // Returns 10 ResMin = Min("Z", "A") // Returns "A"
Versions 24 and later New in version 24 Syntax
Calculates the minimum of values passed in parameter Hide the details
<Result> = Min(<Value 1> [, <Value 2> [, <Value N>]])
<Result>: Character string, integer or real The smallest value passed in parameter. <Value 1>: Character string, integer or real Value to compare. <Value 2>: Optional character string, integer or real Value to compare. <Value N>: Optional character string, integer or real Value to compare. Versions 24 and later New in version 24 Business / UI classification : Neutral code
This page is also available for…
|
|
|
| |
| | https://youtu.be/dKGij6_4_0Y
https://windevdesenvolvimento.blogspot.com/2019/03/dicas-2053-windev-array-15-min.html
// BTN_ARRAY_MENOR_VALOR_MIN
EDT_array="VALOR MINIMO =>"
EDT_array=Min(10,20,60,10,15)
|
|
|
|
| |
| |
| |
|
| Vou mostrar como retornar o Menor Valor |
|
| //Vou mostrar como retornar o Menor Valor
EDT_RESULTADO= Min(EDT_a,EDT_b)
// ELE VAI RETORNAR O MENOR VALOR ENTRE OS DOIS // IT WILL RETURN THE LOWER VALUE BETWEEN THE TWO // ÉL VA A RETORNAR EL MENOR VALOR ENTRE LOS DOS
// BLOG COM VIDEO E EXEMPLO
https://doc.pcsoft.fr/fr-FR/?3050004&name=min_fonction
http://windevdesenvolvimento.blogspot.com.br/2017/07/aula-1195-comandos-16-menor-valor-min.html
https://www.youtube.com/watch?v=3VP84QNJKKI
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |