Forum Discussion
Pricey79
3 years agoHelper V
Multiple record Measure help please
Hello , I was hoping someone could help please. I have a three columns : ID, State and Part. I need to create a fourth column that relies on the previous three collumns returning specific crtier...
- 3 years ago
amitchandak
3 years agoSuper User
Pricey79 , Create a new column like
new column =
var _count = countX(filter(Table, Table[ID] = earlier(Table[ID]) && Table[Satus] ="Not Ready"), Table[ID])
return
if(not(Isblank(_count)) , "Not Ready" , "Ready")
Earlier, I should have known Earlier: https://www.youtube.com/watch?v=cN8AO3_vmlY&t=17820s
- Pricey793 years agoHelper V
amitchandak Thank you for your reply, much appreciated.
However, it doesnt seem to work properly.
I have a record where State is Ready for both, but the new column is showing Not Ready?