MoreBeerMorePower

Power Platform中心だけど、ノーコード/ローコード系を書いてます。

2021-10-01から1ヶ月間の記事一覧

Smoothly animated clock without Timer control

pic.twitter.com/sqb4bDtjdN— Hiro (@mofumofu_dance) 2021年10月19日 So far, I saw many app makers made animated clock leveraging repeating Timer and some variable to update HTML/SVG code. The animated clock in above Tweet is not using Timer …

Post a teams message with Tag mention from Power Automate

Posting a teams channel message with Tag mention is achieved using Graph API via flow with following Url https://graph.microsoft.com/v1.0/teams/<teamId>/channels/<channelId>/messages and request body (See Ref. Mention a tag with a flow – Expiscornovus from D</channelid></teamid>…

Alternative of OnStart - New property App.StartScreen

App.OnStart retired? As I have posted on Twitter, App.OnStart property will be retired, and "alternatives" will also be provided as new App property. Settings in Preview environment with v3.21101.10.200979774 Today, I discovered one of tho…

New Power Apps function - RandBetween

The Rand() function returns random number between 0-1. To get random number with arbitrary min. and max. value, you can use following expression using Rand(): min + (max-min)*Rand() Alternatively, using Shuffle(...) and Sequence(....), it …