Feb 04 2024 04:42 PM
I have a spread sheet that includes specific information that I need to make list for quick reference.
all 70+ sheets are the same for different vehicles by vehicle #.
How do I set up a sheet to give me a list of Sheet names with the cell information. That will update when I add a new vehicle. Thank You for the help.
Feb 04 2024 05:59 PM
Feb 05 2024 06:19 AM - edited Feb 05 2024 06:22 AM
SolutionYou can use formulas similar to the following. Put the first formula in the same cell on each sheet. This will give the sheet name in a cell on each sheet. If you put that formula in A1 on each sheet, then use the 2nd formula to get a list of the values in A1 on all the sheets, assuming that Sheet1 is the first sheet, and LastSheetName is the last sheet. Just use the actual sheet names of your first and last sheet.
=TEXTAFTER(CELL("filename",A1),"]")
=TEXTSPLIT(TEXTJOIN(";",TRUE,'Sheet1:LastSheetName'!A1),,";")
You can add a conditional (IF) to the first formula so that it only gets the sheet name if the other cell information is what you're looking for. For example, =IF(B1="Automatic steering", TEXTAFTER(CELL("filename",A1),"]"),"").
Feb 09 2024 04:39 PM
Feb 19 2024 04:33 PM
Feb 20 2024 06:11 AM
Feb 20 2024 04:18 PM
Feb 05 2024 06:19 AM - edited Feb 05 2024 06:22 AM
SolutionYou can use formulas similar to the following. Put the first formula in the same cell on each sheet. This will give the sheet name in a cell on each sheet. If you put that formula in A1 on each sheet, then use the 2nd formula to get a list of the values in A1 on all the sheets, assuming that Sheet1 is the first sheet, and LastSheetName is the last sheet. Just use the actual sheet names of your first and last sheet.
=TEXTAFTER(CELL("filename",A1),"]")
=TEXTSPLIT(TEXTJOIN(";",TRUE,'Sheet1:LastSheetName'!A1),,";")
You can add a conditional (IF) to the first formula so that it only gets the sheet name if the other cell information is what you're looking for. For example, =IF(B1="Automatic steering", TEXTAFTER(CELL("filename",A1),"]"),"").