Problem with workflow condition

How do i create a workflow with target data named โ€œDetailsโ€ with the โ€œIf this is trueโ€ condition is depends on the column that is exist on table named โ€œPMCโ€.

Table โ€œDetailsโ€ contain column: ID, Name, Date, address.
While table โ€œPMCโ€ contain column: PMC date, Status, Need corrective action?.

So that the workflow will generate a notification with the โ€œDetailsโ€ detail in the notification, only when column โ€œNeed corrective actionโ€ is equal to โ€œyesโ€.

Solved Solved
0 8 530
1 ACCEPTED SOLUTION

The reason is probably missing [_THISROW]โ€ฆ

LOOKUP([_THISROW].[ID],โ€œPMC detailโ€,โ€œPMC IDโ€,โ€œNeed corrective action?โ€)=โ€œYesโ€

View solution in original post

8 REPLIES 8

You can use LOOKUP() expression but first you need to have some kind of relationship so you can find the correct record from the PMC table. Are you using a REF field?

Not sure but this might help


How many PMC records can you have that belongs to Detail record?

At least this could workโ€ฆ IN(TRUE,[Related PMCs][Need corrective action])

LOOKUP([ID],โ€œPMC detailโ€,โ€œPMC IDโ€,โ€œNeed corrective action?โ€)=โ€œYesโ€

the formula is correct but it does not trigger the workflow, where did i do wrong?

The reason is probably missing [_THISROW]โ€ฆ

LOOKUP([_THISROW].[ID],โ€œPMC detailโ€,โ€œPMC IDโ€,โ€œNeed corrective action?โ€)=โ€œYesโ€

Thank you

Youโ€™re welcome

Top Labels in this Space