【PowerApps Introduction】How to register files such as images from PowerApps to the SharePoint list.

Поділитися
Вставка
  • Опубліковано 12 вер 2024
  • I will explain about [PowerApps Introduction] "How to register files such as images from PowerApps to the SharePoint list".
    We will introduce how to register and display images and Excel files from Power Apps using the image column and attachment column of the SharePoint list.
    ●Contents
    01:37 1. A column that can register files in a SharePoint list
    03:47 2. How to register and display files such as images from PowerApps
    ●Related sites
    UpdateContext function in Microsoft Document/Power Apps
    docs.microsoft...
    Concat and Concatenate functions in Power Apps
    docs.microsoft...
    ● Related videos
    [Introduction to PowerApps] Introducing frequently used functions for each situation (1)
    • 【PowerApps入門】よく使う関数を場面...
    [Introduction to PowerApps] Application creation practice #5 Application development ② - What is a function? Registration/reading to the database-
    • 【PowerApps入門】アプリ作り実践 #...
    ●Blog
    www.powerplatf...
    I will systematically summarize the contents introduced on UA-cam.
    I also write about the use case that cooperates with Power Platform.
    ●Twitter
    / pawami_powerpf
    Tweets about how to use Power BI, Power Apps, Power Automate, and other small things that you notice on a daily basis.
    #powerapps

КОМЕНТАРІ • 17

  • @atsw9156
    @atsw9156 Рік тому

    ファイルの添付の実装解説ありがとうございます!

  • @nagatatadao8303
    @nagatatadao8303 Рік тому +1

    いつもタメになる動画ありがとうございます。毎回コメントを残すわけではないですが、更新の度に高評価押させてもらっています!

    • @pawami
      @pawami  Рік тому

      いつも見ていただき、ありがとうございます!
      高評価いただくと、とても励みになります!
      今後も、役立つ動画をアップしていけるよう頑張ります。

  • @ko9688
    @ko9688 Рік тому

    base64やらバイナリーやら苦労していました。
    ありがとうございます。
    これで、署名も楽に行えます。

  • @user-ps2tf1jl4e
    @user-ps2tf1jl4e 8 місяців тому

    PowerApps初心者です
    とても分かり易い解説なので全ての動画を拝聴させて頂きたいと思います
    不躾ですが、SharePointの画像付きリストをエクセルにエクスポートする際、画像だけ文字列になってしまう原因と対策を教えて頂けますと嬉しいです

    • @pawami
      @pawami  8 місяців тому

      SharePointリストのイメージ列は、Excelにエクスポートすることができないため、画像ファイル名の文字列のみがエクスポートされます。

    • @user-ps2tf1jl4e
      @user-ps2tf1jl4e 8 місяців тому

      @@pawami やはり無理でしたか、、、迅速な回答ありがとうございました!

    • @pawami
      @pawami  8 місяців тому

      エクスポートしたい理由にもよりますが、例えばSharePointリストを別のリストに移行したい場合等は、Power Automateで実現できると思います。

    • @user-ps2tf1jl4e
      @user-ps2tf1jl4e 8 місяців тому

      @@pawami アドバイスありがとうございます!!
      Power Automateを勉強します

  • @user-bu9dl2hu9i
    @user-bu9dl2hu9i Рік тому

    分かりやすくご説明ありがとうございます。ひとつ質問ですが、SharePointリストにイメージを保存し続けると容量の問題はないでしょうか。その時はSharepointの制限、最大1TBになりますか

    • @pawami
      @pawami  Рік тому +1

      動画見ていただき、ありがとうございます!
      SharePointの容量は、購入するライセンスの種類と、ライセンス数によります。
      以下のサイトを参考にしていただければと思います。
      learn.microsoft.com/ja-jp/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits

  • @maxtusan
    @maxtusan Рік тому

    powerappsの編集フォームでsubmitformでlistsに追加しても、lists側で画像が登録され無いのですが、原因は何が考えられるのでしょう

    • @pawami
      @pawami  Рік тому +1

      原因は詳しく見てみないと分かりません。
      SharePointリスト側で直接登録が可能ならば、PowerApps側の実装の問題だと思われます。

  • @atsw9156
    @atsw9156 Рік тому

    やっぱり添付ファイルの場合はSubmitFormなんですかね。Patch関数で実装してもなぜか登録できないんですよね。

    • @pawami
      @pawami  Рік тому

      添付ファイル列へのファイル登録はPatchではできないようです。(私も色々試してみましたが、ダメでした…)
      そもそも画像以外の添付ファイルをアップロードするためのコントロールは用意されていないので、サポートされていないのだと思います。

    • @user-ub5ss2gf7y
      @user-ub5ss2gf7y Рік тому

      突然失礼します。
      添付ファイルが1つの場合は、次のコードで保存できました。
      添付ファイルが複数の場合は、ForAllで囲めばできそうです。(実際にやってみた訳ではありません。)
      の中身は適宜調整してください。
      ご参考までに。。
      -----------------------------
      Collect(
      ,
      {
      Title: ,
      '{Attachments}':
      Table(
      {
      DisplayName: First(.Attachments).Name,
      Id: GUID(),
      Value: First(.Attachments).Value
      }
      )
      }
      )

    • @atsw9156
      @atsw9156 Рік тому

      @@user-ub5ss2gf7y
      添付ファイル列の持つ内部的なテーブルまで指定してあげるってことですかね。参考になります。ありがとうございます!!