Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I have 2 fields: price and phn_num.
In phn_num field I want to display following:
If price is 0 then I want last three digits of phn_num to be replaced with XXX.
BR,
Artur
Hi @Uri !, please try this :
if(price=0, mid(phn_num,1, len(phn_num)-3) & 'XXX', phn_num)
Hi @Uri !, please try this :
if(price=0, mid(phn_num,1, len(phn_num)-3) & 'XXX', phn_num)