Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
59 | |
58 |