Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have /N characters in data
I want to replace /N values with blank
Please suggest
Hi Parul,
Use Below Code:
If(Wildmatch(FiledName,'/N'),null(),FiledName) as [New Value],
Thanks,
Arvind Patil
Hi Parul,
Use Below Code:
If(Wildmatch(FiledName,'/N'),null(),FiledName) as [New Value],
Thanks,
Arvind Patil
or maybe:
replace(YourField,'/N','') as xxxx
Thanks it worked