简体   繁体   中英

Excel Function Large with condition

I need some help getting a function to work. I need to add a feature that will only run this function if column B2-B900 doesn't contain a zero. I'm not sure how to add the if statement.

=INDEX(DATA!$A2:$A900, MATCH(LARGE(DATA!$J2:$J900, 1), DATA!$J2:$J900, 0))

thanks in advance!

请尝试包装:

=IF(COUNTIF(B2:B900,0)=0, . . . )

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