Hi
Can anyone help.. what is the patch not right?
Also I have a URL column in side SP list, how to patch back and show clickable in gallery? thank you
The amount in SP is in currency. Do I need to change to number? Thanks
Hello @bbsin,
If it is Curreny in BackEnd, and you cannot change the Type of Field in powerapps try using Value(Text).
For Showing URL try Using HTMLtext.
Let me know if you need any help.
Please mark as Answer if it is helpful and provide Kudos
Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA
Blog : https://microsoftcrmtechie.blogspot.com
Hi @bbsin
1. To show clickable link in Gallery
Insert a HtmlText and Set HtmlText to
"<a style='color:blue' href='" & ThisItem.URLColumn & "'>" & ThisItem.URLColumn & "</a>"
2. For Currency, As Ram mentioned needs to convert to value since PowerApps has text
Patch(
EventIItinerary,
BrowseGallery1.Selected,
{
Cost: Value(DataCardValue15.Text),
EventLogin: DataCardValue16.Text
}
)
3. To Save back the URL, no special needed. This is just text
EventLogin: DataCardValue16.Text
here EventLogin is URL field in Sharepoint
Please share the error information if this is not resolved.
Hi
can help advise what is wrong with the syntax?
let me try to put in shortly
Hi @bbsin
Remove this {Total: Amount.Text} on your patch command and replace with
Total: Value(Amount.Text)
User | Count |
---|---|
256 | |
111 | |
95 | |
48 | |
40 |