Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour à tous ,
Je veux créer une dimension à partir d'une dimension déjà existante ( Je veux avoir supplier à partir de Description);
à gauche j'ai mon champ Description et à droite j'aimerais avoir le champs SUPPLIER. Je veux creer une colonne Supplier pour l'utiliser comme une liste de selection. Merci de votre aide. Cordialement.
It is easy with string functions but you must define a rule because sometimes Supplier is the left part, other times is the right part of the column Description.
Thanks Alessandro,
The rules it's easy,
For example, if in the description columns we find Guess Computacenter Governance and computacenter AMTF the supplier must be Computacenter.
whatever the position of supplier in the description columns I want to obtains the name of supplier.
Bonjour Xavier,
Cette approche surtout l'applymap repond à un autre autre soucis que j'avais rencontré.
Dans mon cas j'ai opté pour une solution avec des wildmatch.
if
(WildMatch([IO Description],'*ACCENTURE*'),'ACCENTURE'
, if(WildMatch([IO Description],'*DATA4*',),'DATA4'
)
) AS Supplier