Skip to content

Instantly share code, notes, and snippets.

@Rinatamu
Last active July 9, 2018 10:17
Show Gist options
  • Save Rinatamu/6320ca2455504a4b8672c19d94540fa3 to your computer and use it in GitHub Desktop.
Save Rinatamu/6320ca2455504a4b8672c19d94540fa3 to your computer and use it in GitHub Desktop.
Sharepointカスタムリスト参照列をPowerAppsで初期値固定させたい時のTips ref: https://qiita.com/rnakamuramartiny/items/37afddb4a0c84bdffdd4
//新規登録モードの場合
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