Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have some problem to craete null values replace with any text unknown' can you please suggest me
Load
If(IsNull(Field), 'Unknown', Field) as Field
Check this
Ex:
Regards,
Jagan.
use below in your script...
IF(IsNull(YourFieldName) or LEN(TRIM(Replace(YourFieldName,'-','')))=0, 'Unknown',YourFieldName) as YourFieldName
Like this.
Regards
ASHFAQ
thanks Ashfaq
Welcome ![]()
Sanjeev,
Happy to know that you got your answer...
Just for my curiosity, what was wrong with tresesco, Jagan or my answer?
I understood he gave with example
![]()