Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
How do I rewrite this measure so that it will only show the numbers from the beginning of when the values started?
Solved! Go to Solution.
Hi @agd50 ,
I got an idea. It's to capture the first date which the value is over 0 and then leave the value less than its date blank and the rest the original values.
For example,
As required, the value should start in March and be 0 in February. Create the measure.
Measure = var _mindate=CALCULATE(MIN('Table'[Date]),FILTER(ALLSELECTED('Table'),[Value]>0))
return IF(MAX('Table'[Date])<_mindate,BLANK(),SUM('Table'[Value]))
Put the measure in the Y-axis, which starts in March.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @agd50 ,
I got an idea. It's to capture the first date which the value is over 0 and then leave the value less than its date blank and the rest the original values.
For example,
As required, the value should start in March and be 0 in February. Create the measure.
Measure = var _mindate=CALCULATE(MIN('Table'[Date]),FILTER(ALLSELECTED('Table'),[Value]>0))
return IF(MAX('Table'[Date])<_mindate,BLANK(),SUM('Table'[Value]))
Put the measure in the Y-axis, which starts in March.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 38 | |
| 31 | |
| 26 |