Get the Current Worksheet Name only
December 19, 2017
If you want to get the current worksheet name only in excel, you can use a combination of the MID function, the CELL function and FIND function. You can use the below generic formula: =MID(CELL(“filename”,B1),FIND(“]”,CELL(“filename”,B1))+1,255) The below explains how the above excel formula works: The CELL function will get the full information of the current… read more »