Forum Discussion
Anonymous
4 years agoNot applicable
Set value for all records with same ID based on column value
Dear Community, I am trying to add new column. If product include "A" then all id can get same value Is it possible? Regards, Betty
- 4 years ago
Anonymous , A new column
var _1 = countx(filter(Table, [order] = earlier([order]) && [product] = "A") , [Order])
return
if(isblank(_1), Blank() , "V")
amitchandak
4 years agoSuper User
Anonymous , A new column
var _1 = countx(filter(Table, [order] = earlier([order]) && [product] = "A") , [Order])
return
if(isblank(_1), Blank() , "V")
- Anonymous4 years agoNot applicable
I appreciate your help very much. 😁