Formula for showing the number in A Column

JamesLT

New Member
Joined
Feb 26, 2014
Messages
5
Hi Experts,



Is there any way that I could use a single formula to loop the C column instead of placing the same formula with different Cell A values for cell C4, C11 & C17?

Million Thanks!

Best Regards,
James
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Try this is C4 and drag down:

=IF(B4="","",IF(AND(C3="",ISNUMBER(SEARCH("(",A3))),MID(A3,FIND("(",A3)+1,FIND(")",A3)-FIND("(",A3)-1),C3))
 
Upvote 0
Or try

=IF(B4="","",IF(AND(ISTEXT(A3),ISNUMBER(A4)),LEFT(RIGHT($A3,7),6),C3))

Again in C4 and copy down.

Gaz
 
Upvote 0
One way:

=IF(B4="","",LEFT(RIGHT(LOOKUP("zzzzzzz",$A$3:A3),7),6))
 
Upvote 0
Thank you Steve, Gaz and Phuoc. You guys save my day.

I get your idea now. The key part is if(And(condition 1, condition 2)...

Appreciate your help!
James
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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