Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
amaleranda
Post Patron
Post Patron

Dynamic Measure

Hello DAX Gurus, 

 

I need a little help. 

I have a report including below graph with some other visuals. What I need is to show % in card visual. By defaults (when user didn't select anyting on the graph card needs to show the current % in this case 28% (20W11-14). issue is when I put the same measure it does show the current % it showed average of all, which is default behaviour of dax.

say someone seleted 19W36-39 the card should change to 86%. 

the mesaure for % in the graph as below. is there a way to achieve this.

 

Compliant% = DIVIDE(
CALCULATE(
DISTINCTCOUNT(Schedule_[Work Order]),
Schedule_[Status] = "Compliant"
),
DISTINCTCOUNT(Schedule_[Work Order])
)Graph1.PNG
 
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Well, you could do this:

 

Card Compliant% = 
  VAR __YearWeekThingInAxis = MAX('Table'[YearWeekThingInAxis])
RETURN
  CALCULATE([Compliant%],FILTER('Table',[YearWeekThingInAxis] = __YearWeekThingInAxis))

 

Assumes quite a few things. 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

Well, you could do this:

 

Card Compliant% = 
  VAR __YearWeekThingInAxis = MAX('Table'[YearWeekThingInAxis])
RETURN
  CALCULATE([Compliant%],FILTER('Table',[YearWeekThingInAxis] = __YearWeekThingInAxis))

 

Assumes quite a few things. 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler   Your assumptions were correct 🙂 Thanks mate. Champion.

 

 

Sweet! 🙂

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

It should work with filter . Can you share sample data and sample output.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.