Forum Discussion
Anonymous
7 years agoNot applicable
How to Multiply measure with calender's table
Hi,
i create measure Potential GP = [DBD Traffic]*[Highest Rev/traffic] which i want to multiply with number of date days
for example, protenial trand = iferror([Potential GP]*[calender(days)],0)
how that will possible?
hi, Anonymous
You could use this formula as below:
Measure = [Potential GP]* DAY(SELECTEDVALUE(calender[Date]))
Of course, you could nest them with other functions
Result:
Best Regards,
Lin
2 Replies
- v-lili6-msft
Community Support
hi, Anonymous
You could use this formula as below:
Measure = [Potential GP]* DAY(SELECTEDVALUE(calender[Date]))
Of course, you could nest them with other functions
Result:
Best Regards,
Lin
- AnonymousNot applicable
v-lili6-msft thank you, its work