Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
So I want to get the cells, which are not empty. I tried
=if(isnull(col),col)
but this is the completely opposite of what I want
I want it like
=if(!isnull(col),col)
May be this?
If(Len(Trim(Col)) = 0, 1) AS EmptyCol
if(isnull(fieldName),fieldName) as fieldName
or
if(fieldName=' ',fieldName) as fieldName
or
if(len(fieldName)=0' ',fieldName) as fieldName
Hi Jisephcirspy,
You can try below expression:
=If(ISNULL(Col),,Col)
no, this doesn't solve the problem 😞
it gives me an error...
try this way
NULLASVALUE *;
IF(IsNull(Col1), 'Not Available', ' ') as [Not Available];