admin管理员组文章数量:1022720
I am looking to use the copy() function in PowerApps as a workaround for copying a list of ID numbers directly to clipboard in PowerBI. I am new to the PowerApps and am not quite sure what I am doing wrong here.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Can anyone help point me in the right direction? I saw some discussion about collecting items in a gallery with checkboxes, but ideally I could create 1 button that could copy the entire list to clipboard with 1 click.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Returns only one value
ForAll(PowerBIIntegration.Data,Copy('Load ID_Column1'.Text))
Error
Copy('SO#'.Text)
Returns only one value
I am looking to use the copy() function in PowerApps as a workaround for copying a list of ID numbers directly to clipboard in PowerBI. I am new to the PowerApps and am not quite sure what I am doing wrong here.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Can anyone help point me in the right direction? I saw some discussion about collecting items in a gallery with checkboxes, but ideally I could create 1 button that could copy the entire list to clipboard with 1 click.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Returns only one value
ForAll(PowerBIIntegration.Data,Copy('Load ID_Column1'.Text))
Error
Copy('SO#'.Text)
Returns only one value
1 Answer
Reset to default 0Power Apps has the Concat function which makes combining strings from a table much easier.
For your case, you can try something like this which will copy a specified field from all rows in your gallery separated by a comma:
Copy(Concat(Gallery3.AllItems, ColumnToCopy & If(!IsBlank(ColumnToCopy), ",")));
Alternatively, you can separate all values with a new line:
Copy(Concat(Gallery3.AllItems, ColumnToCopy & If(!IsBlank(ColumnToCopy), Char(10))));
Just be sure to swap out ColumnToCopy
with your BOL field.
I am looking to use the copy() function in PowerApps as a workaround for copying a list of ID numbers directly to clipboard in PowerBI. I am new to the PowerApps and am not quite sure what I am doing wrong here.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Can anyone help point me in the right direction? I saw some discussion about collecting items in a gallery with checkboxes, but ideally I could create 1 button that could copy the entire list to clipboard with 1 click.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Returns only one value
ForAll(PowerBIIntegration.Data,Copy('Load ID_Column1'.Text))
Error
Copy('SO#'.Text)
Returns only one value
I am looking to use the copy() function in PowerApps as a workaround for copying a list of ID numbers directly to clipboard in PowerBI. I am new to the PowerApps and am not quite sure what I am doing wrong here.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Can anyone help point me in the right direction? I saw some discussion about collecting items in a gallery with checkboxes, but ideally I could create 1 button that could copy the entire list to clipboard with 1 click.
ForAll( Filter(Gallery3.AllItems,Not(IsBlank('BOL#'))), Copy('BOL#'.Text) )
Returns only one value
ForAll(PowerBIIntegration.Data,Copy('Load ID_Column1'.Text))
Error
Copy('SO#'.Text)
Returns only one value
1 Answer
Reset to default 0Power Apps has the Concat function which makes combining strings from a table much easier.
For your case, you can try something like this which will copy a specified field from all rows in your gallery separated by a comma:
Copy(Concat(Gallery3.AllItems, ColumnToCopy & If(!IsBlank(ColumnToCopy), ",")));
Alternatively, you can separate all values with a new line:
Copy(Concat(Gallery3.AllItems, ColumnToCopy & If(!IsBlank(ColumnToCopy), Char(10))));
Just be sure to swap out ColumnToCopy
with your BOL field.
本文标签: Copying Multiple Rows from a list of records to clipboard in PowerAppsStack Overflow
版权声明:本文标题:Copying Multiple Rows from a list of records to clipboard in PowerApps - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745574932a2156959.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论