- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
PowerApps Attachment Control Simplified - Part 1
In this video, we'll understand the Attachment Control in Power Apps. We'll demonstrate how to handle multiple files uploaded through Power Apps and how to use Power Automate to automate this process efficiently.
In Part 1 of this series, we will set up the Attachment Control in Power Apps to enable users to upload files. We'll demonstrate how to loop through these files and store them in a variable, allowing us to easily post-process them using Power Automate.
Expressions:
// Clear the existing file collection
Clear(FileCollection);
Clear(FileContent);
// Collect all items from Gallery2 into FileCollection
Collect(FileCollection, Gallery2.AllItems);
// Loop through each item in FileCollection and collect the file data
ForAll(
FileCollection,
Collect(
FileContent,
{
File: JSON(Image3.Image, JSONFormat.IncludeBinaryData),
FileName: lbl_attachmentName.Text
}
)
);
// Set the FileData variable with the JSON representation of FileContent
Set(FileData, JSON(FileContent));
Reference blog: https://clavinfernandes.wordpress.com/2020/02/04/merge-attachments-from-attachment-control-in-power-apps-and-send-them-as-email/
Видео PowerApps Attachment Control Simplified - Part 1 канала Clavin Fernandes
In Part 1 of this series, we will set up the Attachment Control in Power Apps to enable users to upload files. We'll demonstrate how to loop through these files and store them in a variable, allowing us to easily post-process them using Power Automate.
Expressions:
// Clear the existing file collection
Clear(FileCollection);
Clear(FileContent);
// Collect all items from Gallery2 into FileCollection
Collect(FileCollection, Gallery2.AllItems);
// Loop through each item in FileCollection and collect the file data
ForAll(
FileCollection,
Collect(
FileContent,
{
File: JSON(Image3.Image, JSONFormat.IncludeBinaryData),
FileName: lbl_attachmentName.Text
}
)
);
// Set the FileData variable with the JSON representation of FileContent
Set(FileData, JSON(FileContent));
Reference blog: https://clavinfernandes.wordpress.com/2020/02/04/merge-attachments-from-attachment-control-in-power-apps-and-send-them-as-email/
Видео PowerApps Attachment Control Simplified - Part 1 канала Clavin Fernandes
Комментарии отсутствуют
Информация о видео
2 августа 2024 г. 13:18:01
00:10:37
Другие видео канала





















