
Announcements
Hi Everyone,
I have one question, can we show the latest published date on the screen of the app and it will automatically change whenever the app will be republished.
Thanks
Hi,
You can do that by using the PowerAppsforMakers connection :
First(
Filter(
PowerAppsforMakers.GetAppVersions("xxxxxxx").value,
!IsBlank(properties.appDefinition.properties.lastPublishTime)
)
).properties.appDefinition.properties.lastPublishTimeReplace the "xxxxxxx" with your App ID. you can get it by going to make.powerapps.com > applications > select the app > details > app id at the bottom.