Notifications
Announcements
This app allows you to encode plain text to base64, and decode base64 to text.
Detail of technique is described in my blog post
https://mofumofupower.hatenablog.com/entry/encode_decode
Again, can I please ask that you mark my original response as the solution.
This will help others who need to find a solution to this issue.
Yes this is solvable but will need Site Collection Admin rights on the site and an understanding of how search works in SharePoint
Manage the search schema in SharePoint - SharePoint in Microsoft 365 | Microsoft Learn
So , is that issue solvable ? I am New to this ...That's why so many doubts
Then please mark as answer.
As i say, the issue you now currently face is no longer with GraphAPI or PowerApps.
It is purely an issue with SharePoint Managed and Crawled properties.
DDM
The Answer You provided is working with some changes like my share point link . But when I am trying to get my List column name result like
Then I am not getting any response for those
Did the original response solve your issue ? If so please mark as answer.
Results not showing ? I assume you mean in the search results ? You can test in PowerApps monitor and check the response output. In my experience, it is almost always down to SharePoint Search (Managed and Crawled Properties).
When I have Columns Like:- Id Product Sales Person Quantity Discount Unit Price Age Region Category Profit Margin
if I am putting these inside ""fields"": [ ] noting is return in response only title i am getting and ""id"", ""listId"", ""author"", ""title"", ""JobNo"" are getting ..my column name results are not showing
Here is my solution:
Is it fixed bro because I have tried same but getting error
1.
2.
There is a discrepancy between what is in the demo app and what is in your blog post.
Encode/Decode Base64 in Power Apps without Flow - MoreBeerMorePower (hatenablog.com)
These appear to be cause an error in my app. The code in the app works in your app but when i change it to code in your blog it throws an error
Blog :
AsciiTable:AddColumns(Sequence(2^8,1),"char",Char(Value)
AddColumns(ForAll(Split(InputText,""), {Result: ThisRecord.Value}),"dec",LookUp(AsciiTable,char=Result).Value),//Convert text to Ascii character code (decimal)
App:
AddColumns(ForAll(Split(InputText,""), {Result: ThisRecord.Value}),dec,LookUp(AsciiTable,char=Result).Value),//Convert text to Ascii character code (decimal)
I face the same error when trying to use the code from the blog in another app I am developing. When using the code from the demo app, it does not return an error but causes my HttpRequest to fail but the code from your blog throws the error shown above in the screenshot.
Can you help please ?
Thanks