Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Everyone, Thank you in advance!
I am building a "Routing Check" for the ground shipment. please see the example 1 below.
Group by the "HB"
We have a shipment from AMS to BUH.
if the GNR Origin = Consol Lane left 3 letter, it will be a "First leg".
if the GNR Dest = Consol lane Right 3 letter, it will be the "last leg".
the rest will be "transit Leg"
The aim/goal for this little project is want to flag the "HB" that is missing the "Last leg"
So, the Example 1 will be fine
please see below Example 2
Example 2
Example 3 (Goal)
So, not sure if any one can help on these?
Solved! Go to Solution.
Hello,
You can do this in a couple of ways. Personally I would fix this with a measure instead of a column.
So just create a table visual, add [HB] as a field and add the measure below.
Measure =
IF(
NOT ISBLANK(
CALCULATE(
COUNTROWS(Table),
Table[Leg check] = "Last leg"
)
),
"OK",
"Missing Last Leg"
)
Hello,
You can do this in a couple of ways. Personally I would fix this with a measure instead of a column.
So just create a table visual, add [HB] as a field and add the measure below.
Measure =
IF(
NOT ISBLANK(
CALCULATE(
COUNTROWS(Table),
Table[Leg check] = "Last leg"
)
),
"OK",
"Missing Last Leg"
)
Thank you! it is work!!
thank you so much!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
74 | |
63 | |
51 | |
47 |
User | Count |
---|---|
211 | |
85 | |
64 | |
59 | |
56 |