Jump to content
Fórum Script Brasil
  • 0

Operador IN


leandrolinof

Question

Pessoal!

Tenho um campo que o usuario digita numeros de NFs, Ex: 62705,62707, etc...

To fazendo assim na fórmula, ({NOTAFISCAL.NUMERO} in {?NOTAS_ESCOLHIDAS}) o campo notas escolhidas é NUMBER e o campo NUMERO é Inteiro.

Só que não ta funcionando desse jeito.

Alguém sabe algum outro jeito?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

{?NOTAS_ESCOLHIDAS} é uma string onde vao vir escritos esses numeros separados por virgula??

é, acho q o in vai procurar na string, e se por exemplo, la dentro estiver assim "12345, 54321", se você procurar o numero "234" ele deve encontrar.

usando o Split() isso pode funcionar:

StringVar array x;
BooleanVar r := False;
NumberVar i;

x := Split({?NOTAS_ESCOLHIDAS}, ",");

For i := 1 To Ubound(x) Do
(
    If {NOTAFISCAL.NUMERO} = CDbl(x[i]) Then
    (
        r := True;
        Exit For;
    );
);

r;[/code]

Edited by kuroi
Link to comment
Share on other sites

  • 0

Pessoal consegui resolver.

Inseri na formula o seguinte: Replace(toText({NOTAFISCAL.NUMERO},0),'.','') in {?NOTAS_ESCOLHIDAS}

E transformei o parametro NOTAS_ESCOLHIDAS em String.

O Replace era porque o campo NUMERO estava vindo com . então tive de fazer um replace pra tirar.

Agradeço a ajuda de todos abraços...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...