Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Columns Calculation add new

Hello everybody,

 

I need your help to add a make a calculate columns for my table. 

I have this kind of table, Where I want to add a new column "Activity between October 2020 and Decembre 2020" that tel us if the person make activity during this period or not.

and the second column calculate "Nbr Activities during this period by id" 

 

As the example :

  • for id1, he have make 6 activities during the period
  • for id2, he have make 3 activities during the period
  • for id8, he have make only 1 activity during the period
  • etc...

 

Activities DateidActivity between October 2020 and Decembre 2020Nbr Activities during this period by id 
12/02/2021id1no0
11/02/2021id1no0
02/03/2021id1no0
27/01/2021id2no0
28/01/2021id3no0
29/01/2021id4no0
30/01/2021id5no0
31/01/2021id1no0
01/02/2021id2no0
02/02/2021id6no0
03/02/2021id6no0
04/02/2021id7no0
05/02/2021id8no0
06/02/2021id9no0
07/02/2021id10no0
08/02/2021id11no0
04/12/2020id12yes1
05/12/2020id1yes6
06/12/2020id10yes2
02/11/2020id1yes6
03/11/2020id2yes3
04/11/2020id1yes6
05/11/2020id11yes1
06/11/2020id10yes2
20/10/2020id1yes6
21/10/2020id1yes6
22/10/2020id2yes3
23/10/2020id3yes1
24/10/2020id4yes1
25/10/2020id1yes6
26/10/2020id2yes3
27/10/2020id8yes1

 

Thank you for your help.

 

Best,

  • Anonymous , Try new columns liek

     

    Activity between October 2020 and Decembre 2020 = if(isblank(countx(filter(Table, Table[ID] = earlier([ID) && [Date] >=date(2020,10,1) && [Date] <=date(2020,12,31)),[ID])), "No", "Yes")


    Nbr Activities during this period by id = countx(filter(Table, Table[ID] = earlier([ID) && [Date] >=date(2020,10,1) && [Date] <=date(2020,12,31)),[ID])+0

2 Replies

  • Anonymous , Try new columns liek

     

    Activity between October 2020 and Decembre 2020 = if(isblank(countx(filter(Table, Table[ID] = earlier([ID) && [Date] >=date(2020,10,1) && [Date] <=date(2020,12,31)),[ID])), "No", "Yes")


    Nbr Activities during this period by id = countx(filter(Table, Table[ID] = earlier([ID) && [Date] >=date(2020,10,1) && [Date] <=date(2020,12,31)),[ID])+0