Welcome to the blog. Without wasting anytime we will get straight to the point. Here we will learn and create Macros in a very easy way. In this blog we will col our tabs with different colours for each tab. Here is the Data which we will be using to colour the Tabs. In this sample data, there are 10 Cities and Sheets with these city names. You are tasked to colour these 10 Tabs with colour. Each tab colour should be different from each other. Now let us write code which will colour tabs. The Code will look Like this You can copy the code from below and use it in your excel ----------------- Sub Change_Tab_Colour() ActiveWorkbook.Sheets("Bengaluru").Tab.Color = RGB(255, 0, 0) ActiveWorkbook.Sheets("Chennai").Tab.Color = RGB(0, 255, 0) ActiveWorkbook.Sheets("Hydrabad").Tab.Color = RGB(0, 0, 255) ActiveWorkbook.Sheets("Trivindram").Tab.Color = RGB(0, 0, 0) ActiveWorkbook.Sheet...