Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Every one I want to change 'A' with ADMIN and I use this code :
Load
If([Catégorie Client]='A',Replace(Replace([Catégorie Client],'ADMIN','');
plz help me for this solution.
Thanks.
HI,
TRY THIS,
=IF([Catégorie Client]='A',REPLACE([Catégorie Client],'A','ADMIN'), [Catégorie Client])
HI,
TRY THIS,
=IF([Catégorie Client]='A',REPLACE([Catégorie Client],'A','ADMIN'), [Catégorie Client])
Try with
If([Catégorie Client]='A',Replace([Catégorie Client],'A','ADMIN'),[Catégorie Client])
Hi Mohamed,
Did you got the relevant one?
Ok thanks all is work for me