indirect, make it, shorter

white_flag

Active Member
Joined
Mar 17, 2010
Messages
331
hello

I have this formula

Code:
=LEFT("m_"&INDIRECT(""&"B14");IF(ISERROR(FIND("+";INDIRECT(""&"B14"))+1);LEN(INDIRECT(""&"B14"))+2;FIND("+";INDIRECT(""&"B14"))+1))

this formula read cell B14 will add "m_" and if the cell contain '+' will cut the string after +. to let something like this: "m_string"
in B14 is "string1" will result m_string1
in B14 is "string2+something" will result m_string2

it is working...but I want to put this formula in
index(),match(),match()

if I putted will not gone work because it is too long

so can be this done shorter? or different approach
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Why the use of Indirect?

Try

="m_"&LEFT(B14,IF(ISERR(FIND("+",B14)),LEN(B14),FIND("+",B14)-1))
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,532
Members
449,316
Latest member
sravya

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