Posts by guerilla

    Re: Yes No Dropdown Menu



    Aha, i found it in the top left side, thanks for your help : D

    Re: Yes No Dropdown Menu


    Thank you for your reply Miffo, unfortunately i cannot see where to give the list a name. There is nothing above my column letters. at the top right. :s

    Re: Rename Worksheet Code


    thanks for the quick reply, i really am a beginner here and I'm still having trouble getting this to work.

    Code
    ThisWorkbook.Sheets(1) //from 2nd post to select the sheet
    ThisWorkbook.Sheets("Sheet1").Name = "Your new name" //from 3rd post to rename this sheet


    on the first line should i include .select at the end?

    Re: Rename Worksheet Code


    thanks for the replies, I'm a bit of a newcomer to macros so please bear with me, at the moment my script is looking like this

    Code
    Sheets("old report name that is different everytime").Select
             Sheets("old report name that is different everytime").Name = "new report name"


    What I'm trying to do is have my macro change the worksheet name to a generic name, i.e. report so that the rest of the macro will work. thanks again

    Hi, I need a little help with my macro. I currently download a report and it has a different worksheet name everytime. Is there any way using a macro to change the worksheet name? (My macro extracts data from worksheet a and copies into worksheet b) Hope I've provided enough info. Thanks for all replies