Text to Value Summation

Dkendr02

New Member
Joined
Feb 27, 2018
Messages
8
Here is what i am trying to do….is there one formula that would work?

In J2, I want to sum L2:R2 where the value of any text in each cell is = to ‘1’ and S2:V2 where the value of any text in each cell is = to ‘.6’. A blank cell would have no value.

For example, If L2, M2, and N2 had the words RED (with O2-R2 empty) and S2 and T2 had the words BLUE (with U2-V2 empty), J2 would = 4.2

Thank you in advance for the help!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Welcome to the Board!

Try this:
Code:
=COUNTIF(L2:R2,"<>")+(COUNTIF(S2:V2,"<>")*0.6)
 
Upvote 0
Another way
=COUNTA(L2:R2)+COUNTA(S2:V2)*0.6
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,395
Members
449,446
Latest member
CodeCybear

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