Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |