I'm trying to figure out a way to generate the text for a url based on used input.
I can open company documents directly in a browser as long as I have the document numbers numbers. The URLs are structured the same for each document.
Is there a simple way to generate this? I have been reading up on the "concat". I just dont want it to go to a sharepoint list or do anything extra just take the text from a couple of text inputs and insert it into my url to launch.
https://the static part of the email Entry1 "static text" Entry2 "static text" Entry3
Solved! Go to Solution.
& is same as Concat. In nay of the PowerApps formula. Use String or Static Text in Double Inverted comma and PowerApps Code after &
so if you have a textinput1 that have value "test" in it and you write on another text input default as
"This is Static Text Plus" &TextInput2.Text
your output in TextInput2 will be
This is Static Text Plustest
You can apply this anywhere
I'll give that a run real quick. Apparently I was over thinking it.
& is same as Concat. In nay of the PowerApps formula. Use String or Static Text in Double Inverted comma and PowerApps Code after &
so if you have a textinput1 that have value "test" in it and you write on another text input default as
"This is Static Text Plus" &TextInput2.Text
your output in TextInput2 will be
This is Static Text Plustest
You can apply this anywhere
Does it look like I entered it correctly? I got it to a point where there are no errors, but when I select the button it doesn't go anywhere, and says the address is unreachable. I'm trying to make sure I have in there correctly. I'm still comparing they url to what I have in there.
Never mind I got it figured out.