Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have this expression but gives me a "No Data to Display" can you help me out on this? I'm not familiar with set analysis.
=If(Not Isnull([Name]), Count (DISTINCT [Skill]), Null())
All I want is this:
If Name is not null then count their distinct skills. If the condition is not satisfied then return null.
I hope you folk can help me out here. Thanks!
Hi,
Try This: In Script: If (Isnull([Name]), Null(),[Name]) as Emp_Name
On UI : Count (DISTINCT [Skill])
Thanks & Regards,
Ashwini
Try like this
=If(len(trim([Name]))>0, Count (DISTINCT [Skill]), Null())
I still get No Data to Display. I think Set-analysis is the solution to this.
Could you please share sample app
Try like:
=Count(DISTINCT If(len(trim([Name]))>0, [Skill]))
please try like this
=If(isnull([Name]), Count (DISTINCT [Skill]), Null())
Thanks Tresesco for answering, but the result are the same. I get the count of all skills even when the name is null.
I still get the No data to Display
Please share some sample app