Jump to content
  • 0

case functie werkt niet


Zero55

Question

Posted

waarom werkt deze case functie niet ?

 

Case (

(Handling_Status = "IN" )

or

((Year ( Datum Handling IN ) = Handling_Overzicht_jaar) and (Month ( Datum Handling IN ) = Handling_Overzicht_maand))

or

((Year ( Datum handling OUT ) = Handling_Overzicht_jaar) and (Month ( Datum handling OUT ) = Handling_Overzicht_maand ))

; 1

; 0

)

1 answer to this question

Recommended Posts

  • 0
Posted

Geen idee waarom hij niet werk maar als je hem vereenvoudigd dan wellicht wel!

Case (
 Handling_Status = "IN";1;
 (Year ( Datum Handling IN ) = Handling_Overzicht_jaar) and (Month ( Datum Handling IN ) = Handling_Overzicht_maand);1;
 (Year ( Datum handling OUT ) = Handling_Overzicht_jaar) and (Month ( Datum handling OUT ) = Handling_Overzicht_maand);1;
 0
 )

 

Om te testen kan je iedere tak een andere uitkomst geven (1, 2, 3 etc.) zodat je precies ziet welke conditie is gebruikt!

Case (
 Handling_Status = "IN";1;
 (Year ( Datum Handling IN ) = Handling_Overzicht_jaar) and (Month ( Datum Handling IN ) = Handling_Overzicht_maand);2;
 (Year ( Datum handling OUT ) = Handling_Overzicht_jaar) and (Month ( Datum handling OUT ) = Handling_Overzicht_maand);3;
 0
 )

 

Theo

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.

×
×
  • Create New...