Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
hi guys,
i have this table:
i need to exclude division "otros negocios" from the table but include the value of this in the measure "varmg1803" but i cant filter this with filter dax and the filter panel exclude the division and the value :S
varmg1803 measure:
Solved! Go to Solution.
Try this:
NewMeasure =
VAR Selected = SELECTEDVALUE ( 'Maestro dpto'[División] )
RETURN
IF ( Selected <> "OTROS NEGOCIOS"; [varmg1803] )
Try this:
NewMeasure =
VAR Selected = SELECTEDVALUE ( 'Maestro dpto'[División] )
RETURN
IF ( Selected <> "OTROS NEGOCIOS"; [varmg1803] )
hey
try to create a calculated column like this : ( as u see there is a blank for excluded value but its numeric value is still in a table)
I would use the Filter pane to filter your Otros value and then in the measure, just use ALL to wipe that filter away.
hi greg ty for your answer but not work :S. use what you told me in the measure but I lost the values of the divisions and the filter panel keeps modifying the value if I exclude the division
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |