please help on this one...

P

pierre

hi ...please help

i have the following formula :

=LEFT(F1;FIND("*";F1)-1)+LEFT(F2;FIND("*";F2)-1)+LEFT(F3;FIND("*";F3)-1)+LEFT(F4;FIND("*";F4)-1)

is there a way to make it shorter....??
 
L

Lars-Åke Aspelin

=LEFT(F1;FIND("*";F1)-1)+LEFT(F2;FIND("*";F2)-1)+LEFT(F3;FIND("*";F3)-1)+LEFT(F4;FIND("*";F4)-1

Try this formula:

=SUM(1*LEFT(F1:F4;FIND("*";F1:F4)-1))

Note: This is an array formula that should be entered by
CTRL+SHIFT+ENTER rather than just ENTER.

Hope this helps / Lars-Åke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Run time 1004 5
adding fields 6
Show/Hide with VB... Need tailoring. 1
Joining 2 if functions 2
IIF QUERY 2
Information for Pivot Table 3
DIV/O error 1
Strange behavior in INDEX(..., MIN(...)) - array formula 2

Top