Hello,
Is there a way to get an MD5 hash for a text field?
In SQL there is a way to convert a text to an MD5 hash using something like this:
SELECT CONVERT(VARCHAR(32), HASHBYTES('MD5',CONVERT(NVARCHAR(32),'abcd')),2) as HashString;
and the result would be "E4A5FC25F9BBE59EC5606FB8FC093C75"
How I could achieve the same result in Power Apps?
Kind Regards,
Lucian