Hello together
I need help
I would like to encrypt a text in some way using Powerapps. It doesn't matter how. I just can't do it.
Additional information: I work with desktop view and therefore cannot use sharepoint.
Can anyone help me?
Solved! Go to Solution.
Hi @Anonymous,
You may consider showing/hiding the text based on what users provide, if it matches the condition, show the text, if not, hide the text.
Please check if the following workaround will work for you.
Add two Text input fields, Title and Text input 1.
Set the Visible property of the Title field with this code:
If(Value(TextInput1.Text)=123,true,false)
Then if user provides correct password “123”, the title would be displayed. If not, the title field would be blank.
Best regards,
Mabel
Hi @Anonymous,
You may consider showing/hiding the text based on what users provide, if it matches the condition, show the text, if not, hide the text.
Please check if the following workaround will work for you.
Add two Text input fields, Title and Text input 1.
Set the Visible property of the Title field with this code:
If(Value(TextInput1.Text)=123,true,false)
Then if user provides correct password “123”, the title would be displayed. If not, the title field would be blank.
Best regards,
Mabel