MoreBeerMorePower

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

WinForms で Power Fxをはじめてみる

ついに Power Fxのソースコードが公開されました! powerapps.microsoft.com 自前のサービスにPower Fxを使ったユーザー自身によるカスタマイズを用意できますね! そんなたいそうなことはできないので、WinFormsで本当に簡素なアプリを作ってみました。 今…

Power Apps アプリのバージョン管理をGitHubで行えるようになります

これまで Power Apps をチームで作成してきた方であれば度々出くわしたであろう問題、「アプリのバージョン管理どうしよう?」「複数人で開発するのにブランチって作れる?」など、残念ながら共同編集・共同作業のUXはあまり良いものではありませんでした。 …

Working with Formula column in Dataverse for Teams

Overview Formula column is one of data type in Dataverse for Teams leveraging Power Fx. You can add a formula column to table familiar with the Canvas app. In "Expression" box, you can build formula using other columns -Single/Multi line t…

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 …