Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
dseelam
Creator II
Creator II

I need date following other day in set analysis

HELP,

I Have a field a with different values it has warranty start date end date contract start and end dates

so total of 4 dates I need Contract Start date following or equal to warranty End date in set analysis

Example:

TYPEWARRANTY STARTWARRANTY ENDCONTRACT STARTCONTRACT ENDCOUNT
ACTIVE01/01/201201/01/201301/02/201301/02/20141
TERMINATED01/01/201201/01/201301/01/201301/02/20141
SIGNED01/02/201201/01/201310/02/201201/02/20140
null field----1
hold01/02/201201/02/201305/05/201401/09/20171

Thanks in advance

3 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi Dinesh,

Do this in script like this, it is easier and performance would be better

Data:

LOAD

*,

If([CONTRACT START] >= [WARRANTY END], 1, 0) AS Flag

FROM DataSource;

Now in Set Analysis simply use

=Sum({<Flag={1}>} Count)

Hope this helps you.

Regards,

Jagan.

dseelam
Creator II
Creator II
Author

Thanks Jagan Mohan

jagan
Luminary Alumni
Luminary Alumni

Hi,

Please close this discussion by giving Correct Answer to the helpful post if your problem is resolved, it helps others in finding the solution.

Regards,

Jagan.