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

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

Reply
AllanBerces
Post Prodigy
Post Prodigy

S-Curve Forecast Histogram and Line

Hi Good day,
Im stablishing S-curve in PBI, but im stuck on scenario on how to distribute the remaining hrs equal to my daily plan plus increase in hour or additional scope. and any additional hour or increase in hour will plot after the last date of my daily plan same on the remaining hrs. Thank you very much in advance.


From this

AllanBerces_0-1707663861389.png

to this

AllanBerces_1-1707663881940.png

 

AllanBerces_2-1707663909888.pngAllanBerces_3-1707663934198.png

 

Thank you

Allan

3 REPLIES 3
AllanBerces
Post Prodigy
Post Prodigy

Hi,

Good day.

Can anyone please im having trouble with my S-Curve. I have a daily earned, Plan and Forecast reflected on my S-Curve. What I need is.

   1. The Forecast bar will dis-appered once I have daily Earned and the new Forecast bar will calculate base from     current remaning from today to max date of my plan.

2. Any increased mnhrs on my Daily plan will add-up to my daily plan from today to max date of may plan.

3. connected Cumulative line of Daily earned + Forecast.

 

Thank you in advance and really much appreciated.

AllanBerces_0-1707978842804.png

 

AllanBerces_1-1707978865601.png

 

 

   2. 

Anonymous
Not applicable

Hi @AllanBerces ,

Do you want to distribute the value into daily basis? If yes, you can refer the following links:

Solved: Splitting Monthly Targets Into Daily Ones - Microsoft Fabric Community

Daily Target =
DIVIDE (
    Table[Spend],
    SWITCH ( TRUE (), Table[Month] = "January", 31, Table[Month] = "February", 28 , ...)
)

Solved: Split monthly values to daily values - Microsoft Fabric Community

How to split budgets to lower granularity with DAX  

BudgetSplit =
VAR FirstQTRDate =
    STARTOFQUARTER ( Dim_date[Date] )
VAR LastQTRDate =
    ENDOFQUARTER ( Dim_date[Date] )
VAR BudgetDates =
    DATESBETWEEN ( Dim_date[Date], FirstQTRDate, LastQTRDate )
VAR BudgetToDivide =
    CALCULATE ( [TotalBudget], Dim_date[Date] IN BudgetDates )
VAR NumOfDays =
    COUNTROWS ( BudgetDates )
VAR DailyAmount =
    DIVIDE ( BudgetToDivide, NumOfDays )
RETURN
    SUMX ( VALUES ( Dim_date[Date] ), DailyAmount )

If the above ones can't help you get the expected result, please provide some raw data in your tables (exclude sensitive data) with Text format and your expected result with special examples and screenshots. Later I will check if there is any workaround to achieve your requirement. You can refer the following link to share the required info:

How to provide sample data in the Power BI Forum

 

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Hi,

Thank you for your reply. pls refer below other detailed. hope to help me this .

AllanBerces_0-1707733352845.png

and the number generated should not exceed on the max date (3/16/2024) everyday will change the number base from the current remaning (Measure)

AllanBerces_1-1707733676000.pngAllanBerces_2-1707733793710.pngAllanBerces_3-1707733834591.png

 

Thank you

Allan

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

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
Top Kudoed Authors