Finding Next Cell with Specific Text

Askeau

New Member
Joined
Mar 9, 2023
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I need a formula for Column A that searches Column B for the next occurrence of the text, "Total" and then returns the text after a space. I'm frankly at a loss though. I'm fine using an additional Column if necessary
I've been making goes at it with Search, Match, Lookup (but I suck with array/DB formula) and a bunch of various combinations of ISNUMBER, IF, OR, AND, etc.

Optimally, I'd like the function to permanently contain the text as I'll need to use the "Text to Columns" feature to separate line numbers from the cells that don't contain the word "Total" after I complete the room type labeling, although I suppose I can delimit by the period which would potentially work.

Desired Result:
1678388064858.png
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi *Askeau,

Try this:

Excel Formula:
=RIGHT(INDEX($B2:$B$20,MATCH("Total:*",$B2:$B$20,0),1),LEN(INDEX($B2:$B$20,MATCH("Total:*",$B2:$B$20,0),1))-7)

You will have to adjust the ranges to fit your data. This could be condensed using the LET function.

I hope that helps,

Doug
 
Upvote 0
Hi *Askeau,

Try this:

Excel Formula:
=RIGHT(INDEX($B2:$B$20,MATCH("Total:*",$B2:$B$20,0),1),LEN(INDEX($B2:$B$20,MATCH("Total:*",$B2:$B$20,0),1))-7)

You will have to adjust the ranges to fit your data. This could be condensed using the LET function.

I hope that helps,

Doug
It didn't 100% work, but it was close enough that I was able to use the knowledge base I have to get there.

Wouldn't have made it without you! Thank you very much for the help!

Just needed to remove the colon in the "Total" search string as sometimes it is Totals, sometimes it's Total, and remove the $ by the row numbers, definitely wanted to keep the column $B one though. I did NOT want to manually edit each row of the formula for the search string when pasting this in. The document length varies between 20 rows and sometimes exceeds several thousand.
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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