Software

How to Ubuntu (So Far)

I am a complete newbie in the Unix/Linux world. I used some Unix workstations at university, but I never really had a very clear understanding of how they worked, so I think I can safely downgrade myself to “absolute beginner”. I have decided to jump into the world of Linux...

Continue reading...

Simple Macro to Delete Two Blank Worksheets and Move One Worksheet to Another (Master) File

Here is a macro that will delete Sheet 2 and Sheet 3 from one file and then move the remaining worksheet from that file into another file called master.xls. Hope someone finds this useful one day. Sub deletemove() ‘ deletemove Macro ‘ Keyboard Shortcut: Ctrl+l Sheets(“Sheet2”).Select ActiveWindow.SelectedSheets.Delete Sheets(“Sheet3”).Select ActiveWindow.SelectedSheets.Delete ActiveSheet.Select...

Continue reading...