How to get a “Print PDF” Button in Excel?
One of the features in Excel is the ability to convert Excel files to PDF format. In this article we explain how to create a button in the excel worksheet, which when clicked generates a PDF file of that sheet.
Let us take the picture below as example to take a PDF and save it in current folder.

Below are the steps to get a button, which converts the excel file to a PDF file:
Select Developer, select Insert from Control group and select Button from Form Controls.

Drag the control on the spreadsheet, a window appears.
Enter the name of the macro in the tab provided for Macro name and click OK.

To edit the name of the button, Right click on the button and select Edit Text.
Right click on the button and select Assign Macro.

Select the Macro name and select New.

A Microsoft Visual Basic window appears.

Enter the below code in the application where the arrow is pointed, under ‘Sub CreatePDF()’.
Sub CreatePDF()
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
“Generate Report.pdf”, Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:= False
End Sub

Close the Microsoft Visual Basic application, now just click on the CreatePDF button. That’s all a PDF will be generated and saved in the same folder.
If we want to change the name of the PDF, we can change it in the code. For example in the second line we have “Generate Report.pdf”, change it to “Create Report.pdf”.
————————————————————————————————————–
Vani is a Business Associate with p2w2, a Spreadsheet Solutions company. p2w2 has expertise in Excel Modeling, Excel Dashboards, Profitability Analysis, Excel Invoicesand Excel Bid sheets. You can contact us by email: cs [at] p2w2.com or call us at 305.600.0950.
How to Sort in Excel?
Sorting is used to reorder our data in excel. We can easily reorder the data based on the type of sorting that we choose. We have two methods to sort the data.
Method 1:
Below are the steps to sort the given data in Excel:
Select a single cell anywhere in the range that you want to sort.

Note: If there are merged cells in your data, unmerge the cells before applying the Sort operation.
Select Data menu and select Sort from Sort & Filter group.

In the Sort by list, select the first column on which you want to sort. (You can click on Add Level to include additional number of columns to sort).
In the Sort On list, select the desired field from the drop down (Values, Cell Color, Font Color, or Cell Icon).
In the Order list, select the order that you want to apply to the sort operation (A to Z or Z to A for text, lower to higher or higher to lower for numbers).

Check the field My data has headers if your data has headers included.
Click OK.
Picture below shows the data after sorting.

Method 2:
Select a single cell in the column of the range that you want to sort.
Right click on the selected cell and select Sort in the options appeared.
Select the desired options (A to Z or Z to A for text, lower to higher or higher to lower for numbers).

Picture below shows the data after sorting.

————————————————————————————————————–
Vani is a Business Associate with p2w2, a Spreadsheet Solutions company. p2w2 has expertise in Excel Modeling, Excel Dashboards, Profitability Analysis, Excel Invoicesand Excel Bid sheets. You can contact us by email: cs [at] p2w2.com or call us at 305.600.0950.
How to Use Conditional Formatting in Excel?
Conditional formatting is used to pick out important data from a huge list of data. Though it is a little difficult to use, knowing the basics can help us in whatever project we are working on.
We can use conditional formatting in many ways. Following are the two ways of using conditional formatting.
Conditional Formatting in Same cell
Conditional Formatting in Multi cell
Conditional Formatting in Same cell
We can use this option, when we have to apply formats to the same cell. Let us take the example below to apply formats based on required conditions.

In column B of the above picture, the total marks of the students are displayed, we can identify the marks less than 700 and greater than 700 quickly by applying conditional formatting on column B.
Conditional formatting for the values Greater than 700.
Select the cells to format and select Conditional Formatting from Home menu.

Select Highlight Cells Rules and select Greater Than from the drop down.

Enter the number in the box provided for “Format cells that are GREATER THAN:”, and select ‘Custom Format’.

Select Fill from Format Cells, Select a required color from Background color and select OK.

The picture shows the result after applying Conditional Formatting.

Conditional formatting for the values less than 700.
Select the cells which have to be formatted, select Conditional Formatting from Home menu, Select Highlight Cells Rules and select Less Than.
Select the cells to format and select Conditional Formatting from Home menu.

Select Highlight Cells Rules and select Less Than from the drop down.

Enter the number in the box provided for “Format cells that are LESS THAN:”, and select ‘Custom Format’.

Select Fill from Format Cells, Select a required color from Background color and select OK.

The picture shows the result after applying Conditional Formatting.

Conditional Formatting in Multi cell
This option is used to apply formats to more than one cell based on one value. Let us take the example below to apply formats based on required conditions.

Select the cells to format and select Conditional Formatting from Home menu.

Select New Rule from the menu.

Select Use a formula to determine which cells to format from New Formatting Rule window, enter the formula in the box provided for “Format values where this formula is true: , and select Format.

Select Fill from Format Cells, Select a required color from Background color and select OK.

The picture shows the result after applying Conditional Formatting.

————————————————————————————————————–
Vani is a Business Associate with p2w2, a Spreadsheet Solutions company. p2w2 has expertise in Excel Modeling, Excel Dashboards, Profitability Analysis, Excel Invoicesand Excel Bid sheets. You can contact us by email: cs [at] p2w2.com or call us at 305.600.0950.
How to Print Only Selected Objects in Excel?
Printing in Excel is a bit different than printing in some other programs, such as a word processor. Printing selected objects is one of the special features in Excel.
Worksheet with Objects.

Print out with selected objects.

The steps below guide us to print only selected objects , from a number of objects (i.e. controls, images, shapes etc) in a worksheet.
Select the required check boxes.

Press Alt+f11.
A ‘Microsoft visual basic‘ window appears.

Double click on ‘This Workbook’. The cursor appears in the space at the right side, under the Workbook tab.
Now type the code below:
Private Sub Workbook_BeforePrint (Cancel As Boolean)
Dim CBX As CheckBox
For Each CBX In ActiveSheet.CheckBoxes
If CBX.Value = xlOff Then CBX.PrintObject = False
Next CBX
End Sub
After writing the macro, go to the worksheet and print the page, Now you can see the print out with selected objects only.

————————————————————————————————————–
Vani is a Business Associate with p2w2, a Spreadsheet Solutions company. p2w2 has expertise in Excel Modeling, Excel Dashboards, Profitability Analysis, Excel Invoicesand Excel Bid sheets. You can contact us by email: cs [at] p2w2.com or call us at 305.600.0950.
How to Make Validation Case Sensitive?
Chaitanya is CEO of p2w2, a Spreadsheet Solutions company. p2w2 has expertise in Excel Modeling, Excel Dashboards, Profitability Analysis, Excel Invoices and Excel Bid sheets. You can contact us by email: cs [at] p2w2.com or call us at 305.600.0950.


![[Bloglines]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/bloglines.png)
![[del.icio.us]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/digg.png)
![[diigo]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/diigo.png)
![[Facebook]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/facebook.png)
![[Furl]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/furl.png)
![[Google]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/google.png)
![[kirtsy]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/kirtsy.png)
![[Ma.gnolia]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/magnolia.png)
![[MySpace]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/myspace.png)
![[Propeller]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/propeller.png)
![[Reddit]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/reddit.png)
![[Simpy]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/simpy.png)
![[Sphinn]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/sphinn.png)
![[StumbleUpon]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/stumbleupon.png)
![[Technorati]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/technorati.png)
![[Windows Live]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://www.p2w2.com/blog/wp-content/plugins/bookmarkify/yahoo.png)