Hello World! I’m an illustrator/animator but I sometimes work for very light levels of engineering based on #PowerApps#PowerAutomate (#MicrosoftFlow) #Sharepoint for necessary reasons. Here I leave solutions found. Love to #Follow each other so can be more helpful! 🇯🇵👇
[MEMO] #PowerApps Type Def when importing JSON data - Before casting to non-text type you need Text cast first : e.g. Boolean(Text(Value.FeePaid))
Think this initial Text not as casting, but vessel to let App correctly recognize what it gets.
[MEMO] Select Nth item in a gallery #PowerApps
Select(Gallery1, N)
Is this a new feature or they had it long ago? I was creating a column to bool on/off all the time til now... 初歩恥…え、でもどこにも文献なかったよ(T-T) ちなみに第三引数にはChild Controlを指定できるらしい。。
[MEMO] Kinda Stop-moaning stuff x2 #PowerApps :
- ComboBox: default selected items: Using { } is for the selection display column only. You match "value" but show "name": Filter(col, value=#) not {value:#}
- Patch: wanna use self column? Use With to context
[MEMO] User-Defined Function really makes work wiser. By UDF types in Settings you can custom your own type like Record or Table. 大量のコンポーネントで煩雑になっていたアプリ内がスマートに(そして若干速くなった??)効率と歩幅がアップ!#PowerFx#PowerApps
https://t.co/qA1NByiDoS
・ #PowerAutomate Child Flowにメール送信はタブー? 親でそのフロー呼んだ時に「Update the child flow for action to end with a response action」と怒られる。単にRespondつけても変わらず、メールアクションを外すと通る。末尾にしか入れてないので途中に入れるとどうなるかは不明。
Revision: I meant to say,
- RGBA to Hex :
JSON(RGBA(...) or UI color property, JSONFormat.IgnoreUnsupportedTypes)
=Double-quotated Hex (remove DQs by Substitute etc- Char(34) is ")
- Hex to RGBA :
Hex2Dec(each 2 digits of hex) for R, G, B, A
[MEMO] Dynamic Color Handling Basics #PowerApps
- from UI: JSON(###.Fill, JSONFormat.IgnoreUnsupportedTypes) = Hex (need to parse some chars)
- RGBA to Hex: ColorValue(RGBA(...)) = rgba hex (e.g. #33aa55ff)
- Hex to RGBA: Hex2Dec(each 2 digits of hex) for R, G, B, A
inline formatNumber() expression :
To keep leading zero placeholder, use 0 instead of # - like '00'. # skips when hits leading zero-s.
Jonathan from Pragmatic explains it:
https://t.co/wFvAIBHeuk
#PowerApps#PowerAutomate Multiple Email Attachments - dataUriToBinary(<ATTACHMENT_ITEM>['File']) sometimes does/doesn't write the file data correctly. When not working, adding ?['$content'] goes well as I resolved it weeks ago. Are they fixing right now? 日本語コメ欄>
Solved with Azure Functions.
https://t.co/NlvZRZFilY
With AF's HTTP Trigger with a little simple code that passes request, the intuit's host app can shoot the webhook to the shorter AF-issued URL as a proxy.
Azure Front Doorも試したがコスパ高なFunctionsでサクッと解決できた。
You may have received this - MS renewed endpoint URLs. My Intuit App for webhook does not support longer URL than 255 chars.
The old URL will be gone by Nov 30.
I tried to find workarounds. What else can I do??😭
https://t.co/1lgv4X9S1W #PowerAutomate#PowerPlatformCommunity
[MEMO] Not sure if official but many tell :
Displaying images in GDrive : Setting as anyoneWithLink doesn't work with the shared link/webContentLink/webViewLink - This gives charm : ttps://drive.google.com/thumbnail?sz=w[SIZE]&id=[FILE_ID]
*SIZE might matter for fast loading
[MEMO] Also to copy files locally in GDrive - Copy File connector is tricky at Source URL - If the file is restricted, Shared Link / webContentLink returns Sign In HTML even with the connectors signed in properly.
file.get & Create File connector was the workaround this time.
できないことに違和感があるなら基本を見直そう定期。
[MEMO] Get Blob content via GDrive API - file.get + alt=media
How could I ever miss that🫣
https://t.co/nsHIOGRAzb
#PowerAutomate#PowerPlatform#GoogleDrive#API