Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Devesh
Frequent Visitor

Create a cumulative projected line for the month using average of previous days in the same month.

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)

Projected Revenue = ([Sales]/DAY(TODAY())*DAY(EOMONTH(TODAY(),0))

The Green line is the actual sales, and I want a line to project the sales using the above formula.
I have calculated actual sales using this formula:
 
Cumulative Actual =
Var LNBD = LASTNONBLANK(Datemaster[Date],[Sales])
RETURN
CALCULATE([Sales],FILTER(ALL(Datemaster[Date]), Datemaster[Date] <= LNBD),GROUPBY(Datemaster,Datemaster[Month Name]))

I really appreciate any help you can provide.

Devesh_0-1626354040408.png

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

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]
)

vkkfmsft_0-1626674309745.png

 

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.

 

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

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

v-kkf-msft
Community Support
Community Support

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]
)

vkkfmsft_0-1626674309745.png

 

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.

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors