This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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
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 |
|---|---|
| 32 | |
| 26 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 28 | |
| 24 | |
| 22 |