The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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 |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
7 |