简体   繁体   中英

I am having difficulty getting this formula to work in google docs

I "think" I am trying to created a nested IF function in google docs. I am using the formula:

=IF(('Roast Calc'!E6>24,(('Roast Calc'!E6-25)/5),('Roast Calc'!E6/5)),IF('Roast Calc'!J6>24,(('Roast Calc'!J6-25)/5),('Roast Calc'!J6/5)),IF('Roast Calc'!X6>24,(('Roast Calc'!X6-25)/5),('Roast Calc'!X6/5)))

I am receiving a formula Parse error.

Any help is appreciated! thank you!

要将三个IF加在一起:

=('Roast Calc'!E6 -IF('Roast Calc'!E6>24,25,0))/5+('Roast Calc'!J6 -IF('Roast Calc'!J6>24,25,0))/5+('Roast Calc'!X6 -IF('Roast Calc'!X6>24,25,0))/5

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM