Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting all data in column with multiplier ( *1)

Status
Not open for further replies.

bojzon

IS-IT--Management
Sep 18, 2003
25
SI
(excel 2000, xls)
In selected columns need every cell convert data to NUMBER with multiplier *1.
Is there any quicker way than cell by cell?

Thanks

Bojzon
 
Hi Bojzon,

1. Enter the number '1' in any unused cell.
2. Copy the cell
3. Select the range that you want to modify
4. Choose Edit|Paste Special, then 'Values' and 'Multiply'
5. Click OK.

If you need to do this often, you could set up a macro to automate the process, and attach it to a button or keyboard shortcut.

Cheers
 
You could use a macro:
Code:
Sub Macro1()
Do While ActiveCell <> 0:
    ActiveCell = (ActiveCell * 1)
    ActiveCell.Offset(1, 0).Select
    Loop
End Sub
Asign this to a CTRL key, got to the top of the column and start the macro.

Tony
___________________________________________________
Reckless words pierce like a sword,
but the tongue of the wise brings healing (Solomon)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top