<"0",HYPERLINK("mailto:myemail.com""?subject="&N1&"&body="&A3&B3,"Preview Email")) but that only gives me one name not a range and the if function doesn't work. I will give me and name regardless of what number E3 is.
(如果语句不起作用)的第一部分的答案是“ 0”不应在报价中。所以,像,但是,我认为您根本不需要使用
IF
语句。要执行您要寻找的事情,您需要使用HYPERLINK
函数,然后在下一个
FILTER
和ARRAYTOTEXT
中内部使用。
例如一个例子:=HYPERLINK("mailto:myemail.com""?subject="&N1&"&body="&ARRAYTOTEXT(FILTER(A3:A23,B3:B23<0)),"Preview Email")
发出一封电子邮件,其中包含所有符合电子邮件标准的名称。