related to:
[Test view versus editor view show different results](https://community.appsheet.com/t/test-view-versus-editor-view-show-different-results/23439) Questions
Hi. Would it be something wrong with my expression so I get different results in the editor than the expected ones from the test view? Below the first name should not appear in the form list as shown in the test view. [image]
[Bug ? blank datas comparison returns not equal](https://community.appsheet.com/t/bug-blank-datas-comparison-returns-not-equal/40497) Questions
Hi there, I dig into something weird: [related_key_employe_accompagnateur]<>[related_key_employe_accompagnateur corrigé] returns TRUE, mais these two items are blank when I look into it. When I test the function, here is what I get: [image] These are identical type fields, both REF relating to the same Slice. In my opinion, if these two datas are BLANK, then the result when I look for a difference must be FALSE. I just looked a little further: ISBLANK() on 1st field gives TRUE ISBLAN…
I have this expression that is in the event and needs to be true to do a send email task:
[_THISROW_BEFORE].[Mobile Phone] <> [_THISROW_AFTER].[Mobile Phone]
The [Mobile Phone] column is of type “Phone”.
I had to hack it to be like this to work:
AND(
OR(
ISNOTBLANK([_THISROW_BEFORE].[Mobile Phone]),
ISNOTBLANK([_THISROW_AFTER].[Mobile Phone])
),
[_THISROW_BEFORE].[Mobile Phone] <> [_THISROW_AFTER].[Mobile Phone]
)
Why is this long standing known issue still present as a bug?
Should we really have to know to apply this workaround 2 years after the bug was initially reported!?
I wasted significant time drilling down to find this bug because there are so many things that could lead to it with my row editing actions.