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.. Aft...
- 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
Anonymous
4 years agoNot applicable
d after create this measure
com rate =
var activdate=selectedvalue('UB Data'[Date])
return
calculate(max(Comm[Comm]),'Calendar'[Date]>=activdate&&'Calendar'[Date]<=activdate)
- Anonymous4 years agoNot applicable