how to Multiply and Add multiple cells ignoring blanks or text

KariSaga

New Member
Joined
Apr 4, 2019
Messages
5
I am not very good with excel and need some help. I have searched but not finding what I need. I am trying to figure out a simple formula that calculates multiple cells while ignoring blanks or any other text for cell D. I was trying to use isnumber eg... =IF(AND(ISNUMBER(A2), ISNUMBER(B2)),(A2*B2)+C2,” “)

The end result is below.

A2*B2+C2

ABCD
12400100900
22400800
32600N/A1200

<tbody>
</tbody>
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
What would happen if A or B are blank or text?

Try this




=IFERROR(VALUE(A2),0)*IFERROR(VALUE(B2),0)+IFERROR(VALUE(C2),0)
 
Upvote 0

Forum statistics

Threads
1,215,409
Messages
6,124,737
Members
449,185
Latest member
hopkinsr

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top