Forum Discussion
Anonymous
4 years agoNot applicable
Datediff using a specific ID
I'm trying to use the completed date of action "C1001A" to find out the age of the subsiquent actions in days. I think the formula I'm using is filtering everything except "C1001A" out though. ...
- 4 years ago
Anonymous Maybe:
Holding stage age = VAR startdate = MAXX(FILTER('hgmcntac', hgmcntac[action_cd] = "C1001A"), hgmcntac[completed_dt]) RETURN (TODAY() - startdate) * 1.
Greg_Deckler
4 years agoCommunity Champion
Anonymous Maybe:
Holding stage age =
VAR startdate = MAXX(FILTER('hgmcntac', hgmcntac[action_cd] = "C1001A"), hgmcntac[completed_dt])
RETURN
(TODAY() - startdate) * 1.- Anonymous4 years agoNot applicable
Greg_Deckler Thank you very much