PowerApps – Double quotes in a string
In PowerApps we use double quotes in the beginning and ending of the string but to get double quotes with in the string we need to use Char(34).
Here is the example:
"He is a " & Char(34) & "PowerApps." & Char(34) learner"
Leave a Comment