Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Guys, may i know how can i create a column in PO table which have a logic of, if PO date inside PO table is larger than the GRN date in GRN table, than "On time delivery" else "Delayed Delivery". Thank you
PO table
GRN Table
Solved! Go to Solution.
Hi @Anonymous ,
You could create a column as below:-
Column =
VAR GRN_date =
LOOKUPVALUE (
'GRN Table'[GRN date],
'GRN Table'[PO Number], 'PO Table'[PO Number]
)
RETURN
IF ( 'PO Table'[PO Delivery Date] > GRN_date, "On Time Delivery", "Delay" )
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous ,
You could create a column as below:-
Column =
VAR GRN_date =
LOOKUPVALUE (
'GRN Table'[GRN date],
'GRN Table'[PO Number], 'PO Table'[PO Number]
)
RETURN
IF ( 'PO Table'[PO Delivery Date] > GRN_date, "On Time Delivery", "Delay" )
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi !!! Thank you so much for helping me out, really appreciate that !!!!
User | Count |
---|---|
23 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |