Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Please your support I am trying to get the value of the first day in this table you only have 15 days always and you want to obtain in a measure the value always of the first I realize it as follows:
Solved! Go to Solution.
Hi @Syndicate_Admin ,
My Sample:
Try this code to achieve your goal.
ValMin =
CALCULATE (
SUM ( Quiebre_8S[Prom Valued L2W] ),
FILTER ( ALLEXCEPT ( Quiebre_8S, Quiebre_8S[Type] ), Quiebre_8S[Ranking] = 1 )
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Syndicate_Admin ,
My Sample:
Try this code to achieve your goal.
ValMin =
CALCULATE (
SUM ( Quiebre_8S[Prom Valued L2W] ),
FILTER ( ALLEXCEPT ( Quiebre_8S, Quiebre_8S[Type] ), Quiebre_8S[Ranking] = 1 )
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Tux-CM It looks like you have what you describe. Can you please explain further what is not working so we can help?
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
hello @Syndicate_Admin the value of 12,727,467 should go out in the entire VALMIN column but if you realize it only comes out for the first 3, do you know why that is happening?
Hi @AllisonKennedy , the value of 12,727,467 should appear in the entire VALMIN column but if you realize it only appears for the first 3, do you know why that is happening?
Thanks in advance.
Hi,
Does this measure work?
Measure = MINX(ALL(Calendar[Fecha]),[Prom Valued L2W])
If it does not, then share the download link of your PBI file.
@Tux-CM Sorry I didn't see that. Is Ranking a calculated column? What's the DAX for it?
Try:
ValMin = CALCULATE([Prom Valued L2W]),ALLSELECTED(), Quiebre_8S[Ranking]=1)
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com