Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have two calculation formulas, to discover a user's adherence.
I want to find a way, that ...
If you select only one month in my data segment it will return the column "% Peso Aderência Limite"
But if I want to view from January to July, in this case more than a month, I would use the calculation "SUM([Realizado])/SUM([Previsto])"
How could i do that ?
Solved! Go to Solution.
@Anonymous , Refer
measure =
var _min = minx(allselected(Date),Date[Date])
var _max = maxx(allselected(Date),Date[Date])
var _diff = datediff(_min,_max,month)
return
if(_diff <=1 ,[% Peso Aderência Limite],SUM([Realizado])/SUM([Previsto]))
@Anonymous , Refer
measure =
var _min = minx(allselected(Date),Date[Date])
var _max = maxx(allselected(Date),Date[Date])
var _diff = datediff(_min,_max,month)
return
if(_diff <=1 ,[% Peso Aderência Limite],SUM([Realizado])/SUM([Previsto]))
Many many thanks!!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 9 | |
| 8 | |
| 7 |