问题标签 [powerapps-formula]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
powerapps-formula - 基于两个值的 Power Apps 库筛选器
我正忙于创建我的第一个电源应用程序,并且在尝试基于多个值过滤图库(SharePoint Linked)时遇到了问题。我现在有三个公式如下:
这些中的每一个都独立工作。一起使用所有这些过滤器的语法是什么?
这不起作用:
谢谢,史蒂文
powerapps - 具有多个条件的 Powerapps UpdateIf
我正在尝试使用 Powerapps 中的 UpdateIf 函数根据两个条件更新 Sharepoint 中的记录。然而,第二个条件似乎被忽略了。功能如下:
会发生更新,但在 SharePoint 列表中有多个 ParNumber 值相同的实例,并且所有实例都在更新,仅包含 PartNumber 和 SerialNumber 匹配的实例。
任何想法为什么?
谢谢,史蒂文
powerapps - PowerApps interate through list updates
Short Version
Is there a way to update a single field in a collection/data source for all rows that meet a certain categorical criteria?
Background and Goal
I'm currently using PowerApps (SharePoint source) to maintain an inventory list for employees to locate items stored in bins. App is working great, but the next step is to give the users the ability to move all the items from one bin into another bin, ideally in a single scan. My theory being that you should be able to scan both bins, storing the details in separate text inputs or variables, and then patch all the items filtered to bin 1 with a new bin number, bin 2.
What I've Tried
I was able to patch a single item in a collection with this code: (don't mind the column name, I used D&D terms for my Sandbox testing grounds)
I also tried to do the following, but ForAll() doesn't seem to play well with Patch() as Patch() wants to interact with a single record at a time:
ForAll(TestCollection,If(Class = "Monk",Patch(TestCollection,{Subclass:"None"},{Subclass: "Potato"})
powerapps - Power Apps 修改下拉项属性以列出特定 SP 文档库文件夹中的文件
我有一个下拉菜单,其中填充了 SP 文档库“文档”中的文件,它在 Items 属性上使用以下代码排除了文件夹名称:
这很好用,但现在我需要在 SP 文档库中指定一个特定的文件夹“Gold”来列出所有文件,不包括任何文件夹名称。如何修改 Items 属性代码以仅列出 SP 文档库“Documents”的“Gold”文件夹中的文件(而不是文件夹)?
office365 - 将 Search() 和 Filter() 组合到 PowerApps 中的库项目
我正在寻找一种在我的 PowerApps 库中组合 Search() 和 Filter() 的方法。有一些列我们想要搜索其中包含的任何文本,但是,有 2 列是查找列(一个是我想要搜索 DisplayName 的人员字段)。有没有办法在图库中添加这两个功能,以便我可以使用单个搜索框来搜索某些列中包含的关键字,或过滤其他查找列?
powerapps-formula - 如何在 Powerapps 中设置多人组合框的 defaultSelectedItems 值?
我想通过从以前的画廊中选择多人来设置DefaultSelectedItems值。
由于我管理多个人,我需要创建一个包含选择的表,但由于我不知道用户选择的记录数,我无法创建它。
例如,如果用户选择 2 个人,则代码如下:
*
*
我如何概括它?
谢谢!
powerapps - 启用下拉按钮和文本输入验证
The [ ADD ] button enable when all 3 drop-down are selected. 试图弄清楚当用户在 Quantity TextInput 上输入数字量时如何启用 [ ADD ]
显示模式: If(IsBlank(drpCategory.Selected.Result) || IsBlank(drpSubCategory.Selected.Result) || IsBlank(drpProductName.Selected.Result),Disabled,Edit)
TextInput 属性:我有以下正则表达式
边框颜色: If(Not(IsMatch(txtQuantity.Text, "\d*"))&&!IsBlank(txtQuantity.Text),RGBA(255,0,0,1),RGBA(0,18,107, 1))