Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hello,
I want to calcule a minimum and maximum for value that i have in table X. But i want to have the minimum and maximum between 2 dates that i have in table Y.
Exemple :
Table X :
ART | Date | Value |
refe1 | 28/11/2022 | |
refe1 | 29/11/2022 | |
refe1 | 30/11/2022 | |
refe2 | 28/11/2022 | |
refe2 | 30/11/2022 |
Table Y :
ART | Date A | Date B |
refe1 | 28/11/2022 | 30/11/2022 |
refe1 | 01/12/2022 | 04/12/2022 |
refe2 | 28/11/2022 | 30/11/2022 |
refe2 | 01/12/2022 | 04/12/2022 |
I tried :
MINX(
KEEPFILTERS(DATESBETWEEN('TableX'[dateFormatted],'TableY'[DATE A],'CBANOQ1'[DATE B])),
CALCULATE(SUM('TableX'[Value]))
)
Thank you for your help
Solved! Go to Solution.
Hi, @Anonymous
Please try formula like:
minimum =
CALCULATE (
MIN ( TableX[Value] ),
FILTER (
TableX,
TableX[ART] = SELECTEDVALUE ( TableY[ART] )
&& TableX[Date] >= SELECTEDVALUE ( TableY[Date A] )
&& TableX[Date] <= SELECTEDVALUE ( TableY[Date B] )
)
)
Your expected result seems to have wrong value, please check again.
Result:
Best Regards,
Community Support Team _ Eason
Hello,
I tried your suggestion but it's donesn't work.
I add a exemple in the tables just to be more specific for the result that i want :
Thanks for your hepl
Hi, @Anonymous
Please try formula like:
minimum =
CALCULATE (
MIN ( TableX[Value] ),
FILTER (
TableX,
TableX[ART] = SELECTEDVALUE ( TableY[ART] )
&& TableX[Date] >= SELECTEDVALUE ( TableY[Date A] )
&& TableX[Date] <= SELECTEDVALUE ( TableY[Date B] )
)
)
Your expected result seems to have wrong value, please check again.
Result:
Best Regards,
Community Support Team _ Eason
TableX:
ART | Date | Value |
refe1 | 28/11/2022 | 3 |
refe1 | 29/11/2022 | 5 |
refe1 | 30/11/2022 | 6 |
refe1 | 01/12/2022 | 7 |
refe1 | 02/12/2022 | 9 |
refe1 | 03/12/2022 | 5 |
refe1 | 04/12/2022 | 8 |
refe2 | 28/11/2022 | 4 |
refe2 | 30/11/2022 | 7 |
refe2 | 02/12/2022 | 10 |
refe2 | 03/12/2022 | 17 |
TableY:
ART | Date A | Date B | output |
refe1 | 28/11/2022 | 30/11/2022 | 3 |
refe1 | 01/12/2022 | 04/12/2022 | 5 |
refe2 | 29/11/2022 | 30/11/2022 | 4 |
refe2 | 02/12/2022 | 03/12/2022 | 10 |
Hi @Anonymous , Can you share the expected output result too.
Hi, @Anonymous
The fields in your formula don't seem to match the fields in your table.
Can you share your expected output to further explain your requirement?
Best Regards,
Community Support Team _ Eason
TableX:
ART | Date | Value |
refe1 | 28/11/2022 | 3 |
refe1 | 29/11/2022 | 5 |
refe1 | 30/11/2022 | 6 |
refe1 | 01/12/2022 | 7 |
refe1 | 02/12/2022 | 9 |
refe1 | 03/12/2022 | 5 |
refe1 | 04/12/2022 | 8 |
refe2 | 28/11/2022 | 4 |
refe2 | 30/11/2022 | 7 |
refe2 | 02/12/2022 | 10 |
refe2 | 03/12/2022 | 17 |
TableY:
ART | Date A | Date B | output |
refe1 | 28/11/2022 | 30/11/2022 | 3 |
refe1 | 01/12/2022 | 04/12/2022 | 5 |
refe2 | 29/11/2022 | 30/11/2022 | 4 |
refe2 | 02/12/2022 | 03/12/2022 | 10 |
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
74 | |
72 | |
71 | |
49 | |
45 |
User | Count |
---|---|
46 | |
38 | |
29 | |
28 | |
28 |