Comments for Office Power User (2024)

Comments for Office Power Userhttps://officepoweruser.comOfficePowerUser.comSun, 26 Apr 2020 07:43:08 +0000hourly1https://wordpress.org/?v=5.3.17Comment on Upload a File to SharePoint in Power Apps by Asmo57https://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1305<![CDATA[Asmo57]]>Sun, 26 Apr 2020 07:43:08 +0000https://officepoweruser.com/?p=742#comment-1305<![CDATA[The JSON function encodes in base64 the result of the Image control, so I needed to convert it back to binary. The file was in Sharepoint Online without it but corrupted and not useable.]]><![CDATA[

The JSON function encodes in base64 the result of the Image control, so I needed to convert it back to binary. The file was in Sharepoint Online without it but corrupted and not useable.

]]>
Comment on Upload a File to SharePoint in Power Apps by Paul Rodrigueshttps://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1297<![CDATA[Paul Rodrigues]]>Sat, 25 Apr 2020 14:30:48 +0000https://officepoweruser.com/?p=742#comment-1297<![CDATA[Hi Asmo57,This is what the image control does for us so there is no need to do it in Automate!]]><![CDATA[

Hi Asmo57,
This is what the image control does for us so there is no need to do it in Automate!

]]>
Comment on Upload a File to SharePoint in Power Apps by Asmo57https://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1256<![CDATA[Asmo57]]>Wed, 22 Apr 2020 12:09:46 +0000https://officepoweruser.com/?p=742#comment-1256<![CDATA[I found my error: in the File Content field in Power Automate, we need to convert from base 64 to binary, so the expression should be:base64ToBinary(triggerBody...)]]><![CDATA[

I found my error: in the File Content field in Power Automate, we need to convert from base 64 to binary, so the expression should be:
base64ToBinary(triggerBody…)

]]>
Comment on Upload a File to SharePoint in Power Apps by Asmo57https://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1255<![CDATA[Asmo57]]>Wed, 22 Apr 2020 10:05:50 +0000https://officepoweruser.com/?p=742#comment-1255<![CDATA[Thank you Paul, very interesting.Unfortunately I was not able to have a working version: the process runs fine but the document is corrupted in Sharepoint (tried with Excel and png files).I debug the two variables extracted from the JSON and they seem ok.Automate receives the same binary value in FileContent so I do not think the problem is in Automate.I will try to serialize the files I used to compare the JSON content.]]><![CDATA[

Thank you Paul, very interesting.
Unfortunately I was not able to have a working version: the process runs fine but the document is corrupted in Sharepoint (tried with Excel and png files).
I debug the two variables extracted from the JSON and they seem ok.
Automate receives the same binary value in FileContent so I do not think the problem is in Automate.
I will try to serialize the files I used to compare the JSON content.

]]>
Comment on How to Build a Menu Component in PowerApps by Paul Rodrigueshttps://officepoweruser.com/how-to-build-a-menu-component-in-powerapps/#comment-1249<![CDATA[Paul Rodrigues]]>Wed, 22 Apr 2020 01:23:39 +0000https://officepoweruser.com/?p=378#comment-1249<![CDATA[Excellent update suggestions. Thanks!]]><![CDATA[

Excellent update suggestions. Thanks!

]]>
Comment on How to Build a Menu Component in PowerApps by lk777https://officepoweruser.com/how-to-build-a-menu-component-in-powerapps/#comment-1245<![CDATA[lk777]]>Tue, 21 Apr 2020 22:31:49 +0000https://officepoweruser.com/?p=378#comment-1245<![CDATA[Thank you for this tutorial. I have made some changes in your setup. 1. Placed (for all Screens, in my case, 3 screens)ClearCollect(colTheMenu,{Item: "Screen 1",Screen: Screen1},{Item: "Screen 2",Screen: Screen2},{Item: "Screen 3",Screen: Screen3})into the App/OnStart2. Component MenuComponent-GalleryMenu/Items: Filter(MenuComponent.Items,App.ActiveScreen Screen) It filters out the current screen.]]><![CDATA[

Thank you for this tutorial. I have made some changes in your setup.
1. Placed (for all Screens, in my case, 3 screens)

ClearCollect(
colTheMenu,{
Item: “Screen 1”,
Screen: Screen1
},
{
Item: “Screen 2”,
Screen: Screen2
},
{
Item: “Screen 3”,
Screen: Screen3
}
)

into the App/OnStart

2. Component MenuComponent-GalleryMenu/Items: Filter(MenuComponent.Items,App.ActiveScreen Screen)
It filters out the current screen.

]]>
Comment on Upload a File to SharePoint in Power Apps by Paul Rodrigueshttps://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1106<![CDATA[Paul Rodrigues]]>Sat, 18 Apr 2020 03:33:16 +0000https://officepoweruser.com/?p=742#comment-1106<![CDATA[Hi Pei Pei,Yes could add the logic to the bottom of the flow.]]><![CDATA[

Hi Pei Pei,

Yes could add the logic to the bottom of the flow.

]]>
Comment on How to Collect Over 2000 Records in PowerApps by Paul Rodrigueshttps://officepoweruser.com/how-to-collect-over-2000-records-in-powerapps/#comment-1105<![CDATA[Paul Rodrigues]]>Sat, 18 Apr 2020 03:26:56 +0000https://officepoweruser.com/?p=598#comment-1105<![CDATA[Hi Rob, The ClientID is just a field I use to filter the data set by client. You can ignore that field for the purpose of this. I only used it to show a real world example copied from an actual app. The variable for this would be set in the app on start.]]><![CDATA[

Hi Rob, The ClientID is just a field I use to filter the data set by client. You can ignore that field for the purpose of this. I only used it to show a real world example copied from an actual app. The variable for this would be set in the app on start.

]]>
Comment on How to Collect Over 2000 Records in PowerApps by RobnAtlhttps://officepoweruser.com/how-to-collect-over-2000-records-in-powerapps/#comment-1044<![CDATA[RobnAtl]]>Fri, 10 Apr 2020 20:01:02 +0000https://officepoweruser.com/?p=598#comment-1044<![CDATA[Hi, thank you for the post. I am unable to get ths routine to work. I understand the logic of what is happening with the "paging" of new records into the collection, but I do not understand the statement "ClientID = varClientID" or how it plays here. What does 'ClientID' represent, and where is the variable 'varClientID' Set or created?]]><![CDATA[

Hi, thank you for the post. I am unable to get ths routine to work. I understand the logic of what is happening with the “paging” of new records into the collection, but I do not understand the statement “ClientID = varClientID” or how it plays here. What does ‘ClientID’ represent, and where is the variable ‘varClientID’ Set or created?

]]>
Comment on Upload a File to SharePoint in Power Apps by Nader hayekhttps://officepoweruser.com/upload-a-file-to-sharepoint-in-power-apps/#comment-1041<![CDATA[Nader hayek]]>Fri, 10 Apr 2020 10:55:35 +0000https://officepoweruser.com/?p=742#comment-1041<![CDATA[Thank you for a much needed detailed explanation, much appreciate the effort]]><![CDATA[

Thank you for a much needed detailed explanation, much appreciate the effort

]]>
Comments for Office Power User (2024)
Top Articles
Latest Posts
Article information

Author: Kimberely Baumbach CPA

Last Updated:

Views: 6012

Rating: 4 / 5 (41 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Kimberely Baumbach CPA

Birthday: 1996-01-14

Address: 8381 Boyce Course, Imeldachester, ND 74681

Phone: +3571286597580

Job: Product Banking Analyst

Hobby: Cosplaying, Inline skating, Amateur radio, Baton twirling, Mountaineering, Flying, Archery

Introduction: My name is Kimberely Baumbach CPA, I am a gorgeous, bright, charming, encouraging, zealous, lively, good person who loves writing and wants to share my knowledge and understanding with you.