Forum Discussion
Label duplicate values based on another column
- 2 years ago
Hi Lee5150
I have one quick question so name alway will only two qty or more than that? as per the give data i have created the custom column
You can achive this by create custom colum measure
custome Column =var maxvalue = CALCULATE(MAX('Table'[Qty]),FILTER('Table','Table'[Name] = EARLIER('Table'[Name])))return IF('Table'[Qty] = maxvalue,"Kitchen","Utility")
Here is my output
Here is my another example hope your all case is covered in this
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more intersing solution here: www.youtube.com/@HowtosolveprobemRegards
Hi Lee5150
I have one quick question so name alway will only two qty or more than that? as per the give data i have created the custom column
You can achive this by create custom colum measure
Here is my output
Here is my another example hope your all case is covered in this
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more intersing solution here: www.youtube.com/@Howtosolveprobem
Regards
- Lee51502 years agoHelper I
This works perfectly! Thank you so much