Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How do i replace text in a field as Null
Name
John
N/A
N/A
Paul
I want to change the 'N/A's in Name field to NULLS.
Thanks
Try: if(Name = 'N/A', null(), Name) as Name
- Marcus
//in front end
If(Name='N/A','',Name)
//in backend
If(Name='N/A','',Name) as Name
Thanks
ARHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH!
I was missing the '()' on null()
Thanks.