Monday, January 30, 2012

Change Power Point 2010 ruler from inches to centimeters

PowerPoint takes its measurement method from Windows.
Changing inches to centimeters in Windows 2010:

1. Click Start, Control Panel, Region and Language.
    Window will open.

2. Click the Additional settings button at the bottom of the Formats TAB

    New window will pop up.

3. Click the down arrow of Measurement system then click Metric

4. Complete by clicking the Apply button, and OK

* * *

Thursday, January 19, 2012

Find the computer's IP address in Windows 7

Option 1

  1. Click the network connection icon in the system tray
  2. Click the Open Network and Sharing Center
  3. Click Local Area Connection or Wireless Network Connection
    One of these links will be displayed depends on the connection type of the computer
    Pop up window will open
  4. Click the Details... button
    The IP address of the computer is displayed in the row next to IPv4 address
    It is a string of numbers and dots such as nn.nn.nn.nnn

Option 2

  1. Click Start, All Programs, Accessories, Command Prompt
    Black DOS window will open
  2. Type: ipconfig
  3. Scroll and find IPv4 address
    The IP address of the computer is displayed in the row next to IPv4 address
    It is a string of numbers and dots such as nn.nn.nn.nnn
* * *

Tuesday, January 10, 2012

Resize fonts in Navigation Pane of Outlook 2010

Outlook 2010 allows changing the size of the fonts in the Navigation Pane (where folders are displayed on the side of the screen). This feature doesn’t exist in Outlook 2007.

1. In Outlook 2010 Click the View TAB
2. Click the down arrow of Navigation Pane
3. Click Options. . .
4. Click the Font button

5. Choose the font type and size

6. Click the OK button

* * *

Import Power Point Theme

Copying or importing theme from an old Power Point file to a new Power Point 2010 file, do the following:
1. In the new opened file click the Design TAB
2. Click the down arrow in the Themes section

3. Click the Browse for Themes row
    Explore and click the file from which the theme should be imported.
    Click the Apply button.

* * *

Thursday, December 29, 2011

How to group Excel columns or rows

Grouping Excel columns/rows enable to hide/collapse, or unhide/expand selected columns or rows by one click. This is useful in worksheet where hide/unhide actions is done frequently on the same columns or rows.

The following instructions will show columns grouping in Excel 2010 however the same method is also true for rows grouping, just in step 1 begin with selecting rows instead of columns.

1. Select the columns to be grouped

2. Click Data TAB then click Group
Click the picture to enlarge

The collapse/expand button will be created
Click the picture to enlarge

*** Done ***

Clicking now on the new created '-' button will collapse columns C,D and E, the '-' sign will change to '+'.

Clicking on the '+' button will expand columns C,D and E.

* * *

Thursday, December 22, 2011

Calculating Payment Due Date After EOM

Here are two options to calculate payments due date after EOM (End Of Month).

Click the picture to enlarge

Reference Date - Date from which days count starts
X Days - Number of days to count after EOM

First Option (as in Excel row 5 in the above picture)
E5 = Due Date =DATE(YEAR(A5),(MONTH(A5)+QUOTIENT(C5,30)+1),DAY(IF(MOD(C5,30)=0,1,MOD(C5,30))))
A5 = Reference Date
C5 = EOM + X Days

All calendar months are counted as having 30 days.

The X Days is counted from the 1st day of the month follows the EOM of Reference Date.

If X Days is a round number of months to count, such as X=30 or 60 or 90 or 120 etc. then the Due Date is set to the 1st day of the month coming next after the last counted month.

For Example:
The input:
Reference Date is 15/02/2011 (15th/Feb/2011)
EOM + X Days is 30
  

The result will be: 1st/Apr/2011
EOM is end of February so month counting will start from the month of March
X Days = 30 means to count round number of 1 calendar month.
March will be counted as 1 calendar month although in March there are 31 days then the due date is set to the 1st of the next month which is 01/04/2011 (1st/Apr/2011).


If X Days is not a round number of months such as X=35 or 63 or 97 or 122 etc. then the Due Date is set to the day which is the number of days left after counting whole calendar months. In this example the days left are 5 or 3 or 7 or 2 though the Due Date in the month coming right after the last counted month, will be on the 5th or 3rd or 7th or 2nd day of that month accordingly.

For Example:
The input:
Reference Date is 15/02/2011 (15th/Feb/2011)
EOM + X Days is 35
  

The result will be: 5th/Apr/2011
EOM is end of February so the count will start from the month of March
X Days = 35 means to count 1 whole calendar month and after that additional 5 days.
March will be counted as 1 calendar month and after that the 5 days will be counted in April so the due date is set to 05/04/2011 (5th/Apr/2011).


Second Option (as in Excel row 7 in the above picture)
E7 = Due Date =DATE(YEAR(A7),(MONTH(A7)+QUOTIENT(C7,30)),DAY(1))+C7-1
A7 = Reference Date
C7 = EOM + X Days

The X Days is counted from the 1st day of the month coming after EOM (End of Month) of Reference Date.

In this option the days count doesn't have any interpretation of counting whole months but just counting days. 30 days wouldn't mean 1 whole month, it would mean 30 calendar days. So when counting 30 days from February 1st the due date will be March 2nd since February has 28 days only.

* * *

Tuesday, December 13, 2011

Try to print a file but 'Save as ...' window pops up

When you click the Print button in attempt to print a file but instead of printing the file Windows display the Save as... pop up window, check that:
(a) The printer is turned ON
(b) Default printer is set. To check this,
     Click Start, Devices and Printers and see if the printer is marked with green check sign.

* * *