Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a situation like i need to count then i ahve to use same for condition as well
e.g
count(A)
count(if(count(A)>1,A))
But is not working and i dont want to do it in script
-Sivaraj
Hi Siva,
Did you use this?
count(if(column1>1,A))
Regards,
Amay
You can do:
if(count(A)>1,count(A),'Not Available')
if you want a value you can set your value instead of 'Not Available'
Hope it helps
Hey Amay i have tried the same and i got it but i dint notice that i have got