Hi All,
Replacement ID
[RecordID]*-1
Replacement Name
"Redacted User "+TOSTRING([RecordID])
I'm trying to mask the data ( User ID and User Name fields) and have the above formulas to redact the data and the data is getting redacted as expected and then later in my workflow i transpose those columns.
Then later in my workflow i have the FLAG column where by i am flagging if the conditions are met then 1.
FLAG
if Contains([Value],"Redacted User") or tonumber([Value]) < 0
then 1
else Null() endif
After transposing the values there is one column called 'No of Days' which holds the value -15 so based on my FLAG column logic if i am saying <0 then this row is flagged as 1.
How to avoid this or how to work around the logic in the FLAG column so that the 'No of Day's is not flagged as 1.
Any thoughts please.
Thanks