The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi
I've an accumulating total measure, which I use to line-plot the running/accumulating total over time (dates). Works fine!
I need help to make a solution (measure) that can return the date when the accumulating value reaches/crosses a certain threshold.
Solved! Go to Solution.
@LarsPedersen , Assume you have measure **bleep** Val on it cumulative on Date, then
Measure =
var _threshold = 10
return
Minx(filter( values(Date[Date]), [**bleep** Val]>=_threshold ), [Date])
@LarsPedersen , Assume you have measure **bleep** Val on it cumulative on Date, then
Measure =
var _threshold = 10
return
Minx(filter( values(Date[Date]), [**bleep** Val]>=_threshold ), [Date])
You are a living Guru... 😇
Thanks for the solution, works exactly as I had hope. 👍
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |