Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
Voila mon problème :dans une table, je veux ajouter un champ en fonction d'un autre champ.
Voici ma table, en gros :
Champ id_demande | Champ id_type | Champ nom_type | Champ Value | Temps Site estimé (que je veux ajouter)
Imaginons, j'ai quelques lignes du type:
2000 | 2 | Temps site estimé | 15 | 15
2001 | 1 | Temps site vendu | 14 | (vide) => CE QUE JE VEUX OBTENIR
2018 | 2 | Temps site estimé | 17 | 17
...
Je veux dire à l'application SI id_type = 2, remplis le champ Nom (que j'ai ajouté) avec la valeur du champ Value correspondant
Voici le code du script :
[custom_values]:
LOAD
[customized_id] AS [issue_id],
[customized_type] AS [customized_type],
[custom_field_id] AS [custom_field_id],
[value] AS [value];
if ([custom_field_id]=96, [value] as [Temps Site estimé (hr)]);
En rouge, ce que j'ai ajouté au script existant. Ce n'est pas fonctionnel.
J'espère avoir été assez clair.
Si vous avez une solution, merci de m'aider
J'ai finalement trouvé la solution :
if ([custom_field_id]=96, [value]) AS [temps_site_estime]; | |