I have a workflow to send out an email, when ...

I have a workflow to send out an email, when a user changes a

date. I achieve this with the following condition:

[_THISROW_BEFORE].[Aftalt dag CPE]<>[_THISROW_AFTER].[Aftalt dag CPE]

However, it also sends out an email if I update another field, while the [Aftalt dag CPE] field is empty, and remains empty.

Is this a bug, or did I do something wrong?

0 3 307
3 REPLIES 3

Itโ€™s not a bugโ€ฆ itโ€™s how it works when your field is blank. It will give you TRUE in any way. Add an AND statement to your expression like AND(ISNOTBLANK([After dag CPE]),โ€ฆ)

@Aleksi_Alkio Seems strange to me, since the BEFORE value is null, and the AFTER value is also null, and null=null, but okay. Thanks for the help with the AND-statement

This is a known functionality but if I remember correctly, itโ€™s very difficult to fix.

Top Labels in this Space