Last active
July 9, 2018 10:17
-
-
Save Rinatamu/6320ca2455504a4b8672c19d94540fa3 to your computer and use it in GitHub Desktop.
Sharepointカスタムリスト参照列をPowerAppsで初期値固定させたい時のTips ref: https://qiita.com/rnakamuramartiny/items/37afddb4a0c84bdffdd4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//新規登録モードの場合 | |
If(Form1.Mode = New, | |
{ | |
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", | |
Id: 1, //参照先リストのIDを入力 | |
Value: "福岡本社" //実際のデータ | |
}, | |
ThisItem.Requirement) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment