March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Production Line Order Batch Time Status 1 100 a 6/1/2018 13:00 Running 1 100 b 6/1/2018 14:00 Ready 2 120 d 6/2/2018 4:00 Not Ready 2 130 e 6/2/2018 4:15 Not Ready 3 150 f 6/1/2018 11:00 Ready 3 175 g 6/1/2018 11:29 Ready
First, accept my thanks to all of those who post and reply...I find both helpful as I try to get a handle on DAX and PBI.
Second, I have searched the postings before writing.
Third, Thanks in advance for your assistance.
Fourth, apologies for wasting your time with this list!
I am creating a dashboard for maunfacturing, not sales; my data is framed by the hour, rather than the normal weekly, monthly, etc..
The data I want to display are only those production lines whose first (earliest) Time status is "Not Ready" and the time expected to start, So, for the tabel below, I would only want to see the row with Batch d.
Thanks in advance
Production Line | Order | Batch | Time | Status |
1 | 100 | a | 6/1/2018 13:00 | Running |
1 | 100 | b | 6/1/2018 14:00 | Ready |
2 | 120 | d | 6/2/2018 4:00 | Not Ready |
2 | 130 | e | 6/2/2018 4:15 | Not Ready |
3 | 150 | f | 6/1/2018 11:00 | Ready |
3 | 175 | g | 6/1/2018 11:29 | Not Ready |
Solved! Go to Solution.
Hi @N2Coffee,
Based on my test, you can refer to below steps:
1.I have entered some sample data to test for your problem in below picture.
2.Create a new measure to filter your status.
Show data=var t=FILTER('Row table','Row table'[Status]="Not Ready" && 'Row table'[Time]=CALCULATE(MIN('Row table'[Time]),ALLEXCEPT('Row table','Row table'[Production Line])))
return
CONCATENATEX(t,[Batch],",")
3.Create a Card visual and add the [show data] fileld.
You can also download the PBIX file to have a view.
https://www.dropbox.com/s/iiwto05006p36zu/Filter%20Frustration.pbix?dl=0
Regards,
Daniel He
Hi @N2Coffee,
I am appreciate it if you could tell me your problem has been solved. If it is, could you please mark the helpful reply as Answered?
Regards,
Daniel He
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
202 | |
137 | |
106 | |
70 | |
68 |