|
Max (Function) In french: Max
// Greatest value? ResMax = Max(10, 15, 20) // Returns 20 ResMax = Max("Z", "A") // Returns "Z"
Versions 24 and later New in version 24 Syntax
Calculates the maximum of values passed in parameter Hide the details
<Result> = Max(<Value 1> [, <Value 2> [, <Value N>]])
<Result>: Character string, integer or real The greatest 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/jf84XeTk7Qw
https://windevdesenvolvimento.blogspot.com/2019/03/dicas-2052-windev-array-14-max.html
// BTN_ARRAY_MAIOR_VALOR_MAX
EDT_array = "Vamor maximo =>" + EDT_array = Max(10, 15, 20) |
|
|
|
| |
| |
| |
|
| | Nessa aula de hoje
Vou mostrar como retornar o Maior Valor
EDT_RESULTADO= Max(EDT_a,EDT_b)
// ELE VAI RETORNAR O MAIOR VALOR ENTRE OS DOIS // HE WILL RETURN THE GREATEST VALUE BETWEEN THE TWO // Él va a devolver el mayor valor en los dos.
// blog com vídeo e exemplo
http://windevdesenvolvimento.blogspot.com.br/2017/07/aula-1194-comandos-15-maior-valor-max.html
https://www.youtube.com/watch?v=nRxHy-FRkW0
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |