Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ..
I have one field with null values means -.i have remove null values in set analysis.
please find following attachment i has agentskill targetid it contains null i have to remove null values in set analysis.
please help me..
Thanks,
You can try {*} to select all values that should exclude the null value and - {''} should get rid of the blank values.
=sum({$<resolveddate ={'*'}-{''}>} 1)
Hi Sujeet..
Thanks for yoyr reply
I tried this systax but its not working.Can you please find my attachment in this AGENTSKILLTARGET ID Contains null values i have to remove null values..Help me..
Thanks..
you can use NULLASVALUE in script in order to assign a string/numeric default value for nulls:
Script:
NULLASVALUE Filed;
Set NullValue = 'N/A';
Expression:
Count({<Field={'N/A'}>}Field)
Hi,
Try Like
Sum({<NullITakingField={"=not isnull(NullTakingField)"}>}Sales)
Regards
Hi Max..
Thanks for your reply..
If apply same syntax it does not working fine..
Thnaks,
Check this
Hi,
What is your expected count??
Regards
Hi Anbu..
Thanks for your reply..
Trasing wise your formula currect.But when i create table box with acdDATE and agentskilltargetID.The agentskilltargetid has null values so it has count but your formula shows zero count..
Please help me
=count({<ACD_Date={'=Len(Trim(AgentSkillTargetID))=0'}>}DISTINCT ACD_Date)