Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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 really don't know how to solve this problem: I have a table with costumers orders and there's not a flag that tell me how many items are delivered. I only know that (in this example), for order 21003130 there are 3 pieces that model 930001.337 and two of them was shipped how can i put in my report that only last row is active?
Thx in advance
Solved! Go to Solution.
Hi, @Supermat
Create a measure that compares the delivery date to today, and if it is greater than today, it is active.
_ac =
IF ( MAX ( 'Table'[SBDAT] ) > TODAY (), 1, 0 )
Create a measure to count the active status.
_Activate_count =
CALCULATE ( COUNT ( 'Table'[SBDAT] ), FILTER ( 'Table', 'Table'[_ac] = 1 ) )
Another measure can be created to apply conditional formatting to the field so that the active date is highlighted.
_color = IF([_ac]=1,"pink")
result:
Please refer to the attachment below for details. Hope this helps.
If I don't understand you correctly, please consdier sharing more details about it or a simple sample file without any sesentive information for further discussion
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Supermat
Create a measure that compares the delivery date to today, and if it is greater than today, it is active.
_ac =
IF ( MAX ( 'Table'[SBDAT] ) > TODAY (), 1, 0 )
Create a measure to count the active status.
_Activate_count =
CALCULATE ( COUNT ( 'Table'[SBDAT] ), FILTER ( 'Table', 'Table'[_ac] = 1 ) )
Another measure can be created to apply conditional formatting to the field so that the active date is highlighted.
_color = IF([_ac]=1,"pink")
result:
Please refer to the attachment below for details. Hope this helps.
If I don't understand you correctly, please consdier sharing more details about it or a simple sample file without any sesentive information for further discussion
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
i think you need to create a shipped table. Then combine two table to get those rows that are not found in shipped table. those rows are active.
Proud to be a Super User!
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 |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 64 | |
| 58 | |
| 31 | |
| 25 | |
| 25 |