嗨,任何可以提供帮助的人。请在下面找到一个简单公式的副本。
由于某种原因,我得到了#VALUE
这个公式,我不能为生活看到原因。我想我需要一套新眼睛才能看到这一点。
有人可以发现任何错误吗?
=IF(E2="Follow-up",(TODAY()-F2)/7),IF(E2="Identify",(TODAY()-C2/7),"Not Applicable")
答案 0 :(得分:0)
尝试:
import RPi.GPIO as GPIO
import time
#Substitute 24 and 25 for whatever pins your push buttons are connected to.
GPIO.setup(24, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(25, GPIO.IN, pull_up_down=GPIO.PUD_UP)
#Then assign these buttons to the variables
Button_1 = GPIO.input(24)
Button_2 = GPIO.input(25)
while True:
if Button_1 == False and Button_2 == False:
print('Both buttons are pressed')
time.sleep(0.2)
这些部分缺少一些括号:=IF(E2="Follow-up",((TODAY()-F2)/7),IF(E2="Identify",((TODAY()-C2)/7),"Not Applicable"))