Forum Discussion
DAX formula help
- Anonymous4 years ago
Hi ramhariessentia ,
For me, it is difficult to give a perfect solution based on your formula by imagination alone. I have tried my best to give an answer close to your needs, but in your actual production environment, you need to adjust it to your actual situation, and I hope the solution given this time will be useful to you.
I just adjust the DAX formula according to your demands, add a new column by below formula
Column 2 = VAR cur_indexbyapp = 'Case'[index_by_app] VAR cur_app = 'Case'[Applicant] VAR tmp = FILTER ( 'Case', 'Case'[Applicant] = cur_app && 'Case'[Inspection] = "no" ) VAR ctn = COUNTROWS ( tmp ) RETURN SWITCH ( TRUE (), ctn = 2, "yes", BLANK () )Please refer attached .pbix file.
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is the count of cases per applicant, i need a rule which ensures that a case is requiring inspection if it is the 25th case after a previous case that had an inspection.