Forum Discussion
Anonymous
5 years agoNot applicable
Calculated column based on other columns
Hi here is my data set. i need to add calculated column based on the other two column."Place ""Status" Month Place Status March Chennai High April Chennai Low May Chennai Low ...
- 5 years ago
Anonymous , Try a new column like
new column =
var _1 = countx(filter(Table, [Place] =earlier([place]) && [Status] ="High"),[Month])
return
if( isblank(_1), "Low", "High")
amitchandak
5 years agoSuper User
Anonymous , Try a new column like
new column =
var _1 = countx(filter(Table, [Place] =earlier([place]) && [Status] ="High"),[Month])
return
if( isblank(_1), "Low", "High")
- Anonymous5 years agoNot applicable
Thanks Amit.. its working.