This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
I Have a table (Click here to Sample) where there are our productions orders.
In this table i have Order number (Key_Odl), products parts that i need to make order (Codice articolo figlio) and i have a colum where i can see if parts are avaible to make orders, also i have a check box. I need to have in my dashboard one colum that let me know if the selected orders is "ok" or "not ok". I think that i need to countrows a single order and then count how many "Ok" i have. If Ok is equal to Number of item i can make my order if not i can't do.
I hope I was clear
Solved! Go to Solution.
Ciao @Supermat ,
you can try this
Column =
IF(
MINX(
FILTER(
'Facts7',
'Facts7'[Order] = EARLIER('Facts7'[Order])
),
'Facts7'[Check]
) = "NO",
"Not Deliver",
"To be Delivered"
)If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perfect!!! Thx
Ciao @Supermat ,
you can try this
Column =
IF(
MINX(
FILTER(
'Facts7',
'Facts7'[Order] = EARLIER('Facts7'[Order])
),
'Facts7'[Check]
) = "NO",
"Not Deliver",
"To be Delivered"
)If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The colum work, but now there are some duplicated value
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 27 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 25 | |
| 24 |