How to skip one row?

BaGRoS

New Member
Joined
Oct 25, 2022
Messages
34
Office Version
  1. 365
Platform
  1. Windows
I have more than 100 sheets. I extract their name by Name Manager where SheetNames=

Code:
=REPLACE(GET.WORKBOOK(1),1,FIND("]",GET.WORKBOOK(1)),"")

and put them in a table:
Code:
=INDEX(SheetNames,A75)
1671111272846.png


Now I would like to be able to decide when to add a sheet with the name Conti in the name and when not. I need to skip a row when I have Conti in the name.
I have started something like this:
Code:
=IF($N$82=1,IF(ISNUMBER(SEARCH("Conti",INDEX(SheetNames,A75))),1,INDEX(SheetNames,A75)),INDEX(SheetNames,A75))
however, I don't know how to skip a row when there is 1
1671111330985.png



Some ideas?
 
1671114736933.png


This is a drop-down menu for choosing the Sheet name.
But now I set the range manually.
 
Upvote 0

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
If to formula is in N94 use
Excel Formula:
=N94#
 
Upvote 0
Mainly from seeing what other people do on here.
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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