Skip to main content

Bonjour 

 

Je souhaite récupérer le motif de reconnaissance dans mon EH 

J’ai rédigé comme suit sans succès 

 

If SHC_CDAPHRQTH = true then

Colonne100 = “ RQTH”

endif

 

If SHC_CDAPHAAH = true then 

Colonne100=”AAH”

endif

 

If SHC_CDAPHCarteInvalidite = true then

Colonne100 = “Carte invalidité”

endif

 

 

Egalement comme ceci

If mid(SHC_CDAPHRQTH) = true then

Colonne100 = “ RQTH”

endif

 

If mid(SHC_CDAPHAAH) = true then 

Colonne100=”AAH”

endif

 

If mid(SHC_CDAPHCarteInvalidite) = true then

Colonne100 = “Carte invalidité”

endif

 

Je n’attends rien dans la case si le salarié n’est pas concerné. 

 

Auriez vous le code correcte s’il vous plait ? 

 

Vous remerciant par avance

Comme ça cela fonctionne

 

If SHC_CDAPHRQTH then
colonne200 = "RQTH"
else
colonne200 = "-"
endif
 

bonne  journée


Merci Hervé 

Mais commet faire pour combiner les 3 types ? 

If SHC_CDAPHRQTH then
colonne100 = "RQTH"
else
colonne100 = "-"
endif

If If SHC_CDAPHAAH then
colonne100 = "AAH"
else
colonne100 = "-"
endif

If If SHC_CDAPHCarteInvalidite then
colonne100 = "Carte d'invalidité"
else
colonne100 = "-"
endif
 

 


Je tenterais comme ça

 

 

If SHC_CDAPHRQTH then
   colonne100 = "RQTH"
          If SHC_CDAPHAAH then
              colonne100 = "AAH"
                    If SHC_CDAPHCarteInvalidite then
                         colonne100 = "Carte d'invalidité"
                    else
                         colonne100 = "-"

                    endif

          endif
endif

 

 


Pardon, j’aurais du me relire

If SHC_CDAPHRQTH then
   colonne100 = "RQTH"

else
          If SHC_CDAPHAAH then
              colonne100 = "AAH"

          else
                    If SHC_CDAPHCarteInvalidite then
                         colonne100 = "Carte d'invalidité"
                    else
                         colonne100 = "-"

                    endif

          endif
endif


Hervé 

Vous êtes impressionnant !

Merci pour ce partage Merci pour votre aide ! 


Commenter