Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi guys,
I have been struggling to solve a simple problem for a few days now. I want a projected line based on the average of previous days sales. (As shown in the picture)
Solved! Go to Solution.
Hi @Devesh ,
Try the following formula:
Measure =
IF(
MAX(Datemaster[Date]) > LASTNONBLANK( Datemaster[Date], [SumSales] ),
AVERAGEX( ALLSELECTED(Datemaster[Date]), [SumSales] ) * DAY( MAX(Datemaster[Date]) ),
[Cumulative Actual]
)
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,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Devesh ,
Has your problem been solved? If it is solved, please mark a reply which is helpful to you.
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,
Winniz
Hi @Devesh ,
Try the following formula:
Measure =
IF(
MAX(Datemaster[Date]) > LASTNONBLANK( Datemaster[Date], [SumSales] ),
AVERAGEX( ALLSELECTED(Datemaster[Date]), [SumSales] ) * DAY( MAX(Datemaster[Date]) ),
[Cumulative Actual]
)
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,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.