Forum Discussion
Constant Value
Hi,
I have calculated average sales in the last 3 months.
Month Avg Sales Qty
July 300 250
Aug 300 600
Sep 300 400
Hi Sdhn420 ,
According to my understanding, the reason why the test formula you used is reporting an error is because format("30.06", "dd.mm.yyyy") returns a text type, not a date type, so an error will be reported. Try the following formula:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
8 Replies
- Sdhn420Helper IV
- MikelyticsResident Rockstar
Sdhn420 ,
Can you please try the following:
VAR DURATION = DATESYTD('d_Calender'[Date],FORMAT("30.06.2020","dd.mm.yyyy")) RETURN CALCULATE(AVERAGE([SalesQty]),DURATION)Best regards
Mikelytics
Did I solve your request? Please mark my post as solution.
Appreciate your Kudos.
- Sdhn420Helper IV
- MikelyticsResident Rockstar
HI Sdhn420
sorry, my mistake.
Please replace FORMAT("30.06.2020","dd.mm.yyyy") by "30.06"
Best regards
Mikelytics
Did I solve your request? Please mark my post as solution.
Appreciate your Kudos.
- v-henryk-mstfCommunity Support
Hi Sdhn420 ,
According to my understanding, the reason why the test formula you used is reporting an error is because format("30.06", "dd.mm.yyyy") returns a text type, not a date type, so an error will be reported. Try the following formula:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - MikelyticsResident Rockstar
you did not replace the complete text I asked for.
Please replace the whole text FORMAT("30.06.2020","dd.mm.yyyy")
by
"30.06"
so that you have:
VAR DURATION = DATESYTD('d_Calender'[Date],"30.06.") RETURN CALCULATE(AVERAGE([SalesQty]),DURATION)Best regards
Mikelytics
Did I solve your request? Please mark my post as solution.
Appreciate your Kudos.