Skip to main content

Formatting In Excel - helps you find meaning in the spreadsheet


 


Formatting In Excel -  helps you find meaning in the spreadsheet 


Spreadsheets are often seen as boring and pure tools of utility, but that doesn't mean that we can't bring some style and formatting to our spreadsheets

Formatting helps your user find meaning in the spreadsheet without going through each and every individual cell. Cells with formatting will draw the viewer's attention to the important cells.

In Excel, formatting worksheet data is easy. You can use several fast and simple ways to create professional-looking worksheets that display your data effectively. For example, you can use document themes for a uniform look throughout all of your Excel spreadsheets, styles to apply predefined formats, and other manual formatting features to highlight important data.

Formatting a Data

Raw Data

 


Using Font, Number tabs as shown in image to do a simple formatting

 



Formatting a Data with help of formatting tools in Excel 

As shown in image , we have Product category wise data with Taxable value, Cost, Profit and Profit Ratio.

There are no gridlines, headers, formula bar and ribbon, these can be hidden with formatting tools.

 



In Below Image you can see Formula tab, header and gridlines

 

 

In Below image there is none. Untick gridlines, headings and formula bar.




Below is a Report prepared using various formatting tools like chart and Smart Art.



 

As shown above we can convert a simple data into a nice and presentable form with the help of formatting tools available in Excel.

As shown in image below, with this style of formatting and presenting a data there is no need to rework the data and show it in PowerPoint.

 



Types of Formatting 

Press Ctrl +1 or 

1. Numeric

I. Date formatting 

 


II. Special Formatting – Change Security code number formatting and Phone number formatting.

 




III. Custom Formatting 

You can custom a formatting as required

 


2. Display

In Home Tab – Font feature 

Change font of the text , size, Colour

Fill colours in cell

Apply borders

Underline, Bold or Italic a character

 




3. Tools

Justify option allows the text copied from internet or word to be changed.

 




Background – Change background from Page layout option

 




4. Row & Column

Data with no Row or column formatting

 



After adjusting row and column

 





5. Outlining

Data Tab – Outline -- Subtotal

 



After Outline

 






Grouping

Data Tab – Outline -- Group

 



6. Visualization

Sparklines – Insert High, Low, first, last, negative markers.

 







WordArt


 



Shape Effects


 



Themes

Pagelayout – Colours or Themes

 



7. Conditional

Home – Conditional Formatting – there are various options for formatting as shown in image. 

 



Conditional Formatting with Formula



 


Comments

Popular posts from this blog

DAX Language - Data Analysis Expression

The DAX language was created specifically for the handling of data models, through the use of formulas and expressions. DAX is used in several Microsoft Products such as Microsoft Power BI, Microsoft Analysis Services and Microsoft Power Pivot for Excel. Below are the types of Dax functions  1. Aggregate  2. Date and time 3. Filter 4. Financial  5. Information  6. Logical 7. Maty and trig 8. Other 9. Parent and child 10. Relationship Management  11. Statistical  12. Table manipulation  13. Text 14. Time intelligence  From the above list of functions 3 types of functions are basic and commonly used, those are Aggregate , Logical and Date and time. Other important entities which are used with the above function are as follows  1. Operators  Example -  ( ), + , Not, &, =, < >, || 2. Statements  Define , Evaluate,  Order by, Return, Var 3. Data Types Binary, boolean,  Currency,  date time, decimal, integer,...

CAGR Dax Measure

CAGR stands for  C ompound  A nnual  G rowth  R ate.  It describes the rate at which an investment would have grown over several years if it had grown at the same rate every year on a compounding, rather than simple, basis.   The CAGR metric is calculated using the following formula: If we were to fit this entire formula into a single measure it may get messy and confusing for other users, so let’s step it out. We will need to create several measures to calculate the individual pieces the CAGR formula.  Of course, this is not the only way to calculate CAGR in Power Pivot, but this is the way we’ve decided to go about it.  So, let’s break it down, we will need the following measures to calculate CAGR: A measure to retrieve the First Year in the data set A measure to retrieve the Last Year in the data set A measure to calculate the Number of Years between the First and Last Years in the data set A measure to aggregate the total sales in the data set...

40 Power Query Editor features in Power BI

40 Power Query Editor features in Power BI along with examples: 1. Filter Rows: Remove rows based on conditions. Example: Remove rows with a null value in the "CustomerName" column. 2. Remove Duplicates: Eliminate duplicate rows. Example: Remove duplicate entries based on the "OrderID" column. 3. Sort Rows: Arrange rows in ascending or descending order. Example: Sort data by "Date" column in descending order. 4. Replace Values: Substitute one value with another. Example: Replace "N/A" with "Unknown" in the "Status" column. 5. Split Columns: Divide a column into multiple columns. Example: Split "FullName" into "FirstName" and "LastName." 6. Merge Queries: Combine data from multiple sources. Example: Merge customer and order data based on the "CustomerID." 7. Group By: Aggregate data based on a specific column. Example: Group sales data by "ProductCategory" and calculate the sum ...