Forum Discussion
S-Curve Daily Progress
Hi Good day,
Almost a month Im searching for the answer on my issue, but can't find it. Can anyonr pls help me on this. I have a table. Date, Daily Proress and Sheet 2. Im trying to create S-Curve Plan vs Daily Progress
Thank you in advance,
Allan
- Anonymous2 years ago
Hi AllanBerces ,
Are the dates you show in Visual in Sheet1(2), I reproduced your scenario
Here are the steps you can follow:
1. Create measure.
Measure = SUMX( FILTER(ALL('BRUNEI_WTI'), 'BRUNEI_WTI'[Date]=MAX('Sheet1 (2)'[Date])),[earned last 24hrs])2. Result:
If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
6 Replies
- AnonymousNot applicable
Hi AllanBerces ,
Are the dates you show in Visual in Sheet1(2), I reproduced your scenario
Here are the steps you can follow:
1. Create measure.
Measure = SUMX( FILTER(ALL('BRUNEI_WTI'), 'BRUNEI_WTI'[Date]=MAX('Sheet1 (2)'[Date])),[earned last 24hrs])2. Result:
If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- AllanBercesPost Prodigy
Thank you very much save me a lot
- AllanBercesPost Prodigy
Hi,
Thank on your reply, the result on the measure sum of all. How can i filter it on specific category? coz the earned last 24 hrs has diffrent category.
Thank you
- AllanBercesPost Prodigy
Hi,
by the way i have separate column for category.
- amitchandakSuper User
AllanBerces , You can compare it with the previous day's value and make it balnk. Hope you are using a date table joined with date of your table and used in the slicer, visual, and measures
Try measures like
M1 = Sum(Table[Earned 24 Hours])
M1 Last = calculate([M1], previousday(Date[Date])
M1 Used = if([M1] = [M1 Last] , blank(), [M1])
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5bd4
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.- AllanBercesPost Prodigy
Thank you amitchandak but the result still the same.