Forum Discussion
Anonymous
4 years agoNot applicable
COmissions by date
I have a table with the date the commissions changed. I need to make other calculations based on these commissions.
But I was unable to show the percentage for the other dates.
For example.. After 01/02/2014, I want to show 2.5% in every line not only on the day it changed. Until the value of the commissions' changes again.
- Anonymous4 years ago
Hi Anonymous ,
Please check the formula:
Comm Rate = CALCULATE(MIN(Comm[Comm]),FILTER(Comm,Comm[Date]<=SELECTEDVALUE('Calendar'[Date])))Best Regards,
Jay
4 Replies
- AnonymousNot applicable
Hi Anonymous ,
Please check the formula:
Comm Rate = CALCULATE(MIN(Comm[Comm]),FILTER(Comm,Comm[Date]<=SELECTEDVALUE('Calendar'[Date])))Best Regards,
Jay
- AnonymousNot applicable
llo
just insert your calendar date instead of UB date date
- AnonymousNot applicable
d after create this measure
com rate =var activdate=selectedvalue('UB Data'[Date])returncalculate(max(Comm[Comm]),'Calendar'[Date]>=activdate&&'Calendar'[Date]<=activdate)- AnonymousNot applicable