Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Eu tenho essas duas condições.
Eles são para o mesmo campo.
get separada que funciona 100%
Mas eu não posso uni-los.
Eu estou fazendo duas guias para condições distintas.
1 = IF (Only ({<[GERENTE] = { 'GER. LJS DINAMIKA'}>} DESC_MAXIMO_CLI),
Apenas ({<[GERENTE] = { 'GER. LJS DINAMIKA'}>} DESC_MAXIMO_CLI), Only ({<[GERENTE] = { 'GER. LJ Fabr. DK'}>} DESC_MAXIMO_FIXO))
2 = if (sum (VLR_ITEM_FATURAR_TOTAL)> DESCONTO_MINIMO, DESCONTO_MAXIMO,
if (sum (VLR_ITEM_FATURAR_TOTAL) <= DESCONTO_MINIMO, 'VALOR INFERIOR AO PEDIDO',
se (ÉNulo (DESCONTO_PRAZO) OU LEN (TRIM (DESCONTO_PRAZO)) = 0, DESCONTO_MAXIMO, DESCONTO_PRAZO)))
Can you describe the combined conditions in words please?
Your first IF () expression doesn't have a condition to validate!
If ( condition, is true, is false )
Anyways, how are you trying to merge them?
Would you have any suggestions,
Number 1 and Number 2: Brings a discount result.
I need to create a joining condition in number 1
I have no idea how to do it ...
Can you describe the combined conditions in words please?
=If(Only({<[GERENTE]={'GER. LJS DINAMIKA'}>} DESC_MAXIMO_CLI), DESC_MAXIMO_CLI,
If(Only({<[GERENTE]={'GER. LJ FABR. DK'}>} DESC_MAXIMO_FIXO),DESC_MAXIMO_FIXO,
If(Only({<[GERENTE]={'GER. LJ FABR. RIMO'}>} DESC_MAXIMO_FIXO),DESC_MAXIMO_FIXO,
if(sum(VLR_ITEM_FATURAR_TOTAL) > DESCONTO_MINIMO,DESCONTO_MAXIMO,
if(sum(VLR_ITEM_FATURAR_TOTAL) <= DESCONTO_MINIMO,'VALOR INFERIOR AO PEDIDO',
if(IsNull(DESCONTO_PRAZO) OR LEN(TRIM(DESCONTO_PRAZO)) = 0, DESCONTO_MAXIMO,DESCONTO_PRAZO))))))
I think it should be like below
If(GERENTE='GER. LJS DINAMIKA',DESC_MAXIMO_CLI,
If(GERENTE]='GER. LJ FABR. DK',DESC_MAXIMO_FIXO,
if(sum(VLR_ITEM_FATURAR_TOTAL) > DESCONTO_MINIMO,DESCONTO_MAXIMO,
if(sum(VLR_ITEM_FATURAR_TOTAL) <= DESCONTO_MINIMO,'VALOR INFERIOR AO PEDIDO',
if(IsNull(DESCONTO_PRAZO) OR LEN(TRIM(DESCONTO_PRAZO)) = 0, DESCONTO_MAXIMO,DESCONTO_PRAZO))))))
If you can provide in statement the condition you are trying to evaluate or using a row of sample data, it'll be easier to assist