Forum Discussion
Anonymous
6 years agoNot applicable
Calculated Column with MAX Date
Hi, I have this calculated column called "Ready for Prep": I need to improve it by making the IF take into account, for each KEY, the MAX date in the column "Change Date". In the example,...
- 6 years ago
Anonymous , Try like
If([change date]= maxx(filter(Epicstatuschangelog, [key]=earlier([Key]) && [to] ="Ready for development"),[change date]) && [to] ="Ready for development", 1,0)
amitchandak
6 years agoSuper User
Anonymous , Try like
If([change date]= maxx(filter(Epicstatuschangelog, [key]=earlier([Key]) && [to] ="Ready for development"),[change date]) && [to] ="Ready for development",
1,0)- Anonymous6 years agoNot applicableThanks !!