Question
How to make some fields data anonymous using numbers or alphabet.
For example, you need to hide/anonymize a row of usernames that contain personal information.
How to make some fields data anonymous using numbers or alphabet.
For example, you need to hide/anonymize a row of usernames that contain personal information.
{ORDERBY [Customer Name] ASC: RANK_DENSE()}
IF DIV([Option1],26) = 0 THEN CHAR([Option1]+64) ELSEIF DIV([Option1],26) <27 THEN CHAR(DIV([Option1],26) +64) + CHAR([Option1] % 26 +65) ELSE CHAR(DIV(DIV([Option1],26),26) +64) + CHAR(DIV([Option1],26) +64 -26) + CHAR([Option1] % 26 +65) ENDRANK function cannot generate Alphabet but CHAR function can convert Alphabet from numbers.
See the online help for Calculate rank or row number for the behavior of the rank function.