简体   繁体   中英

Calculate row in Excel 2 times

I want to calculate these lines:

I3 + 2*J3 + K3

I managed to create this so far: =SUM(I3:K3)

How I can calculate the total using my requirements?

This should be what you're looking for. Don't forget you can do comma-separated cells, not just ranges.

=SUM(I3,(PRODUCT(2,J3)),K3)

简单的解决方案是... =(I3 +(2 * J3)+ K3)

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