Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Need help, I need to tagged record if retain or removed based on its status and it grouping
But the rules are
1: For each Unit, filter out Pros records if there exists an Exec record
2: For each Unit, filter out Vacant records if there exists a Pros record
so if it cointain one Unit it will retain else need to use the rule above.
Im trying to use contains and group by but still i got incorrect Ouput.
Solved! Go to Solution.
You may check if RANKX Function works.
Rules (tagging) =
VAR Rnk =
    RANKX (
        CALCULATETABLE ( Table1, ALLEXCEPT ( Table1, Table1[Property], Table1[Unit] ) ),
        SWITCH ( Table1[Status], "Exec", 1, "Pros", 2, "Vacant", 3 ),
        ,
        1
    )
RETURN
    IF ( Rnk = 1, "Record remains", "Record removed" )
					
				
			
			
				
You may check if RANKX Function works.
Rules (tagging) =
VAR Rnk =
    RANKX (
        CALCULATETABLE ( Table1, ALLEXCEPT ( Table1, Table1[Property], Table1[Unit] ) ),
        SWITCH ( Table1[Status], "Exec", 1, "Pros", 2, "Vacant", 3 ),
        ,
        1
    )
RETURN
    IF ( Rnk = 1, "Record remains", "Record removed" )
					
				
			
			
				its working. thanks.
Hi @rommel20,
Sorry, but i am not able to understand your problem. Can you re phrase what are you doing exactly?
Prateek Raina
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.