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
Hello atavo
That is odd, any chance you can share your .pbix file?
Hi jdbuchanan
Can do. Any chance I can get your email contact?
Not sure how to upload file on this site.
Alfred
- Cmcmahan7 years agoResident Rockstar
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.
- atavo7 years agoHelper I
- jdbuchanan717 years agoSuper 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" )