Forum Discussion
pmthu
4 years agoNew Member
How to find duplicated data in first column based on second column and show result as Status
Hi All, I have one thing to solve.I want to add new column as "Complete or Not" deponding on Action Column.If one date have sign_in and sign_out,data in new column is "Complete" for that date. P...
- Anonymous4 years ago
Hi pmthu ,
Try this DAX formula.
Column = var _distinct = CALCULATE(DISTINCTCOUNT('Table'[action]),filter(ALLEXCEPT('Table','Table'[date]),'Table'[action]<>BLANK())) return IF(_distinct=2,"complete","not")Best Regards,
Jay
Anonymous
4 years agoNot applicable
Hi pmthu ,
Try this DAX formula.
Column =
var _distinct = CALCULATE(DISTINCTCOUNT('Table'[action]),filter(ALLEXCEPT('Table','Table'[date]),'Table'[action]<>BLANK()))
return
IF(_distinct=2,"complete","not")
Best Regards,
Jay