Bonjour,
Pouvez vous m'aider sur ma boucle de condition s'il vous plaît. Il m'est impossible de la fermer.
Voici une capture :
Pour information, la colonne [colis livré dans les 3 mois] n'est pas une chaine de caractère.
Merci d'avance.
Hi @Dupuy
This is because, the output is tried to store as VString.
But "appro" is String type, but when you do + floor(...)
Post that it is numeric type.
Please use "appro" + tostring(floor(...))
This will overcome the issue as it is converted to string.
Many thanks
Shanker V