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 everyone. Hope you doing well
Have face one difficulties in Power BI that would like to require your kind assisntant.
In PO table, i wanted to create a column that consist a logic of = if on time delivery ( in PO table) is equal to "On time" and Full/Partial Delivery (in GRN table) is equal to " Full delivery" , then generate "yes", else 'No")
The result expecting is something stated below. as only PO number 101 to 105 met the requirement of having "On time" in On time Delivery column and "Full Delivery" in Full/Partial Column. so it show a yes, and other show a no
Solved! Go to Solution.
@Anonymous
Add the following Column in the PO Table
Status =
IF (
'PO Table'[On Time Delivery] = "On Time"
&& LOOKUPVALUE (
'GRN Table'[Full/Partial Delivery],
'GRN Table'[PO Number], 'PO Table'[PO Numbe]
) = "Full delivery",
"Yes",
"No"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Add the following Column in the PO Table
Status =
IF (
'PO Table'[On Time Delivery] = "On Time"
&& LOOKUPVALUE (
'GRN Table'[Full/Partial Delivery],
'GRN Table'[PO Number], 'PO Table'[PO Numbe]
) = "Full delivery",
"Yes",
"No"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi !!! thank you so much for your help !!! really appreciate that !!
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |