November 30, 2023

10 Basic Tips you need to know

1. Paste from Clipboard

There is a problem with normal copy-paste that you can only use a single value at a time.

But here is the kicker:

When you copy a value, it goes to the clipboard and if you open the clipboard you can paste all the values which you have copied.

To open a clipboard, click on the go to Home Tab ➜ Editing and then click on the down arrow.

3619 6 - 10 Basic Tips you need to know

It will open the clipboard on the left side, and you can paste values from there.

3619 7 - 10 Basic Tips you need to know

2. Drag and Drop

How to move data from one section of your worksheet to another? I’m sure you think about copy-paste but you can also use drag-drop for this.

3619 4 - 10 Basic Tips you need to know

Simply select the range where you have data and then click on the border of the selection. By holding it move to the place where you need to put it.

3. Serial Numbers

If you work with large data then it’s better to add a serial number column to it. For me, the best way to do this is to apply the table (Control + T) to the data and then add 1 in the above serial number, just like below.

3619 - 10 Basic Tips you need to know

To do this, you simply need to add 1 to the first cell of the column and then create a formula to add 1 to the above cell’s value.

As you are using a table, whenever you create a new entry in the table, Excel will automatically drop down the formula and you will get the serial number.

4. Current Date and Time

The best way to insert the current date and time is to use the NOW function which takes date and time from the system and returns it.

3619 1 - 10 Basic Tips you need to know

The only problem with this function is it’s volatile, and whenever you recalculate something it updates its value. And if you don’t want to do this, the best way is to convert it to hard value.

READ:  Excel Macro Tutorial for Beginners: Create Macros In 7 Easy Steps

​You can also use the below VBA code.

Sub timeStamp()
Dim ts As Date
With Selection
.Value = Now
.NumberFormat = “m/d/yyyy h:mm:ss AM/PM”
End With
End Sub

Or these methods to insert a timestamp in a cell.

5. Select Non-Adjacent Cell

Normally we all do it this way, hold the control key, and select cells one by one.

But I have found that there is a far better way for this. All you have do is, select the first cell and then press SHIFT + F8.

3619 2 - 10 Basic Tips you need to know

This gives you add or remove selection mode in which you can select cells just by selecting them.

6. Sort Buttons

If you deal with the data which needs to sort frequently then it’s better to add a button to the quick access toolbar (if it’s not there already).

3619 3 - 10 Basic Tips you need to know

All you need to do is click on the down arrow on the quick access toolbar and then select “Sort Ascending” and “Sort Descending”. It adds both buttons to the QAT.

 

7. Status Bar

The status bar is always there but we hardly use it to the full. If you right-click on it, you can see there are a lot of options you can add.

3619 5 - 10 Basic Tips you need to know

8. Add Bullet Points

The easiest way to insert bullet point in Excel is by using custom formatting and here are the steps for this:

  1. Press Ctrl + 1 and you will get the “Format Cell” dialogue box.
  2. Under the number tab, select custom.
  3. In the input bar, enter the following formatting.

● General;● General;● General;● General

3619 8 - 10 Basic Tips you need to know
  • Click OK.

Now, whenever you enter a value in the cell Excel will add a bullet before that.

READ:  Top 10 excel skills for finance and accounting need to know in 2020

3619 9 - 10 Basic Tips you need to know

9. Copy of Worksheet

To create a copy of a worksheet in the same workbook drag and drop in the best way.

3619 10 - 10 Basic Tips you need to know

10. Undo-Redo Buttons

Just like sort buttons you can also add undo and redo buttons to the QAT. The best part about those buttons is you can use them to undo up to a particular activity without pressing the shortcut key again and again.

3619 11 - 10 Basic Tips you need to know

Leave a Reply

Your email address will not be published. Required fields are marked *