Forum Discussion
Please Need DAX Help
- 7 years ago
Very odd, somehow the FILTER in your measure was interacting with the context to exclude a row although I am not sure why.
This will return the correct amount for you:
DecisionAmt Declined = CALCULATE( [DecisionAmt], Data[Report Type]="declined" ) - 7 years ago
Thanks jdbuchanan
Would be interesting to know why DAX is behaving this way.
Alfred
I would be interested in seeing your .pbix too. This is a super weird issue. I'm curious what happens if you change the third measure to this:
DecisionAmt Declined: = CALCULATE([DecisionAmt],
FILTER(
Data,
Data[Report Type]="declined"
))The best way to share .pbix files on this forum is to upload it to Google Drive, Dropbox, OneDrive, etc. and post the shareable link.
- jdbuchanan717 years ago
Super User
Very odd, somehow the FILTER in your measure was interacting with the context to exclude a row although I am not sure why.
This will return the correct amount for you:
DecisionAmt Declined = CALCULATE( [DecisionAmt], Data[Report Type]="declined" )- atavo7 years ago
Helper I
Thanks jdbuchanan
Would be interesting to know why DAX is behaving this way.
Alfred
- v-diye-msft7 years ago
Community Support
Hi atavo
Could you tell me if your problem has been solved? If it is,kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. others will benefit from here.