
我有一個 Power Apps 畫布應用程序,其中設置了下拉式選單(姓名、年齡、性別)。使用者可以選擇值並點擊按鈕,透過 Power Automate 將資訊作為文字檔案寫入電腦上的某個位置。我想輸入看看是否可以使用具有相同列(姓名、年齡、性別)和行中不同值的 Excel 工作表,並自動寫入所有資訊。本質上,我的邏輯是這樣的:一次從 Excel 中讀取總共 10 行,並將其輸入到 MS PowerApps 中的表中。在 PowerApps 中顯示此表或庫。在 Powerapps 中執行以下操作:
i = 0
for(i = 0; i < 10; i++)
read row(i)
select dropdowns
push button to write kfile
i++
//If there are less than 10 rows, read upto the row which contains data and then exit the loop.
我知道這根本不接近準確的解決方案,並且需要一些(也許很多)指導才能完成此任務。任何幫助表示讚賞!