Forum Discussion
Yon_Yamas
2 years agoRegular Visitor
Last middle last date
Hi, My data base is like this and i would like to had a column filled with "First" when this is the first "date_debut" of the same group of "id_membre" ; "Last" if this is the last "date_début" of t...
- 2 years ago
hi Yon_Yamas ,
try to add a calculated column like:
column =VAR _table = FILTER(data, data[id_membre]=EARLIER(data[id_membre]))VAR _first = MINX(_table, data[date_debut])VAR _last = MAXX(_table, data[date_debut])RETURNSWITCH([date_debut], _first, "First", _last, "Last", "Renew")
Yon_Yamas
2 years agoRegular Visitor
Thank you so much !