如何在Notion中制作具有两个条件的公式?

问题描述 投票:0回答:2

我在 Notion 中有两个选择字段,“Reqs Status”和“Figma Status”。我想创建一个公式,说明如果这两个字段的内容均“准备就绪”,则公式字段应显示“准备开发”。我尝试了以下方法:

if (prop("Reqs Status") == "Ready" and prop("Figma Status") =="Ready", "Ready for Development")

然而,Notion 说:“函数 if 中的参数太少”

if-statement conditional-statements formula notion-api
2个回答
0
投票

我自己想出来了。我必须做一些调整。这是我想到的:

if(and(prop("Reqs Status") == "Ready", prop("Figma Status") == "Ready"), "Ready for Development", "In Progress")

0
投票

需要设置结果为false,例如:

if (prop("Reqs Status") == "Ready" and prop("Figma Status") =="Ready", "Ready for Development", "not ready yet")

© www.soinside.com 2019 - 2024. All rights reserved.