Forum Discussion
Anonymous
3 years agoNot applicable
concatenate string and year
Hi, Please i need your help , I want to create a new column with this statement : NewVintage = Var test= CONCATENATE("<",VALUE(YEAR(TODAY()) - 4)) // <2019 return IF( Investee[LegalVinta...
- 3 years ago
Anonymous , I think data type issue
trye like
NewVintage =
Var test= CONCATENATE("<",VALUE(YEAR(TODAY()) - 4)) // <2019
return IF( Investee[LegalVintage] < YEAR(TODAY())- 4
, test
, Investee[LegalVintage] & ""
)
amitchandak
3 years agoSuper User
Anonymous , I think data type issue
trye like
NewVintage =
Var test= CONCATENATE("<",VALUE(YEAR(TODAY()) - 4)) // <2019
return IF( Investee[LegalVintage] < YEAR(TODAY())- 4
, test
, Investee[LegalVintage] & ""
)