Hello,
do you know if there is any way to show the app published date automatically in the app?
Thanks a lot
Solved! Go to Solution.
Hi @Antonio,
I'm afraid that you cannot show published data inside an app so far. If you really need this, please consider to add an idea in the PowerApps Ideas forum, so it might be considered for future releases.
https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas
Regards,
Mona Li
Hi @Antonio,
I'm afraid that you cannot show published data inside an app so far. If you really need this, please consider to add an idea in the PowerApps Ideas forum, so it might be considered for future releases.
https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas
Regards,
Mona Li
I was able to finally get the Last Published Date to show!
Use the PowerAppsforAppMakers Connector.
ClearCollect(myAppVersionsv2,PowerAppsforMakers.GetAppVersions("YourAppID"));
ClearCollect(myAppUngroup1,Ungroup(myAppVersionsv2,"value"));
Set(Publ,First(Filter(myAppUngroup1,properties.lifeCycleId = "Published").properties);
Set(PublDate,Publ.appVersion)
PublDate will display the Date/Time of the last Published.
Also if you don't delete old version, you can use a Label like this to place a quick Version # as well.
I used this site to get me started and updated to suit my needs:
<link removed by staff>
Thanks, this is exactly what I was looking for and works perfectly!
Where is this PowerAppsforAppMakers? I looked in the add data section under connectors. No find.
Thanks for your code. Maybe in this two years somethin changed. The working code is now
ClearCollect(myAppVersionsv2, PowerAppsforMakers.GetAppVersions("APPID"));
ClearCollect(myAppUngroup1, Ungroup(myAppVersionsv2,"value"));
Set(Publ,First(Filter(myAppUngroup1,properties.lifeCycleId = "Published").properties));
Set(PublDate,Publ.properties.appVersion)
User | Count |
---|---|
124 | |
87 | |
86 | |
75 | |
69 |
User | Count |
---|---|
214 | |
181 | |
140 | |
97 | |
83 |