PowerApps如果文本字段为空白,则不打补丁,否则打补丁

时间:2019-04-04 09:07:17

标签: powerapps powerapps-formula

我正在编写补丁,但是在补丁之前,我需要检查一些文本字段,并且下拉列表不是空白。我无法使用语法,下面是我的代码

If(!IsBlank(TextInput5_1.Text), "true", "true"), Patch(BookingTest, { Title: title, EventDate: TextInput5_1.Text });

仅当输入或选择字段不为空白时,才需要打补丁。

1 个答案:

答案 0 :(得分:0)

我需要通过修剪删除所有值,然后像这样进行检查:

If(!IsBlank(Trim(TextInput5_1.Text)), Patch(BookingTest,
{ Title: title, EventDate: TextInput5_1.Text });

现在是时候合并其余值了...