• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Add Numbers with text in row

IKHAN

Member
Hello,

Need assistance in adding numbers with text in a row ,Total needs to be updated dynamically as numbers change in row.

Have drop downs in cells to select V 1.0 or S 1.0,S 0.25, S 0.5 list

ex :

Row 4 : V 1.0 v 0.25 D 0.25 D 1.0

output reqd. Row 5 under P column 1.25 under S Column 0.75

Attached sample file
 

Attachments

  • Test1.xlsx
    15.5 KB · Views: 10
Last edited:
Hey Ikhan,

Use below array formula with crt+shft+enter
cell p15 =
Code:
=SUM(IFERROR(SEARCH(P$14,$B15:$O15),0)*--IFERROR(RIGHT($B15:$O15,LEN($B15:$O15)-1),0))

Hello,

Need assistance in adding numbers with text in a row ,Total needs to be updated dynamically as numbers change in row.

Have drop downs in cells to select V 1.0 or S 1.0,S 0.25, S 0.5 list

ex :

Row 4 : V 1.0 v 0.25 D 0.25 D 1.0

output reqd. Row 5 under P column 1.25 under S Column 0.75

Attached sample file
 
Thanks xlstime ...It works.

What was changed in the code , Coz if i copy code into exact another spreadsheet. It doesnt work.
 
Back
Top