Search TeachExcel.com
TeachExcel.com
TE
Teach Excel MS Office Tutorials Excel Consulting Services Excel Forum
Excel Video Tutorials Excel Tips Free Excel Macros Excel Help Resources Contact TeachExcel
Video Tutorials
  • Free Macros
  • Excel Help Directory
  • Excel 2007 Resources
  • Keyboard Shortcuts
  • Excel Forum
  • Contact/About

Macros
Excel Tutorials For Macros

Format Cells as a Scientific Number in Excel Number Formatting


Bookmark and Share

This free Excel macro formats selected cells in the Scientific number format in Excel. This means the cell will be put into the form of powers, which means that trailing zeros will be removed and a number representing those zeros input after an "E" in the cell.

This number format in Excel is especially good for display very large number that have many zeros. This format will help to reduce worksheet clutter and will generally make spreadsheets with very large numbers easier to read and understand.
Where to install the macro:  Module

Excel Macro to Format Cells as a Scientific Number in Excel Number Formatting

Sub Format_Cell_Scientific()

Selection.NumberFormat = "0.00E+00"

End Sub


Bookmark and Share


How to Install the Macro
  1. Select and copy the text from within the grey box above.

  2. Open the Microsoft Excel file in which you would like the Macro to function.

  3. Press "Alt + F11" - This will open the Visual Basic Editor - Works for all Excel Versions.  Or For other ways to get there, Click Here.

      For Excel Versions Prior to Excel 2007
      Go to Tools > Macros > Visual Basic Editor

      For Excel 2007
      Go to Office Button > Excel Options > Popular > Click Show Developer tab in the Ribbon. Then go to the Developer tab on the ribbon menu and on the far left Click Visual Basic

  4. On the new window that opens up, go to the left side where the vertical pane is located. Locate your Excel file; it will be called VBAProject (YOUR FILE'S NAME HERE) and click this.

  5. If the Macro goes in a Module, Click Here, otherwise continue to Step 8.

    1. Go to the menu at the top of the window and click Insert > Module
    2. Another window should have opened within the Visual Basic Editor's window. Within this new window, paste the macro code. Make sure to paste the code underneath the last line of anything else that is in the window.
    3. Go to Step 8.

  6. If the Macro goes in the Workbook or ThisWorkbook, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Then, at the bottom of the list that appears, double-click the ThisWorkbook text.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Go to Step 8.

  7. If the Macro goes in the Worksheet Code, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Within the list that appears you will see every worksheet that is in that excel file. They will be listed as such: Sheet1(NAME OF SHEET HERE) and under that will be Sheet2(NAME OF SHEET HERE). Select the sheet in which you want the macro to run and double-click that sheet.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Repeat steps b and c for every sheet you want the macro to work in. Putting the macro in one sheet will not enable it for any other sheets in the workbook.
    5. Go to Step 8.

  8. Close the Microsoft Visual Basic Editor window and save the Excel file. When you close the Visual Basic Editor window, the regular Excel window will not close.

  9. You are now ready to run the macro.



Similar Helpful Excel Resources

Prevent Excel From Converting Non-number To Scientific Number - Excel

View Content
I am importing a list of values from a text file. Some of the values have the letter "E" embedded in the string. For example one of the imported values is "29875E100". Excel is automatically converting this into scentific notation. Is there a way to avoid this? Thanks.

Format Number In Scientific Category - Excel

View Content
I have a question in formatting number in scientific category.
When I used the normal way in Excel, it gave me 1.00E+03 or 1.00E+04.
I want all numbers to format such that they are all ending with E+03, so I can compare in the same order of magnitude. Any help is greatly appreciated.

Katherine

Stop Text Number Formatting As Scientific - Excel

View Content
I have a file spooling from Oracle to a format that opens in Excel. Some part numbers are coming in as numbers in advance and then formatting as scientific notation. That's bad enought, but when I format them as text, they stay in that format even theough the cell contents are correct. I can't control the format from the Oracle side, but was wondering what I could do with Excel. I thought maybe there was a way to set the default to text or something in advance, or maybe to develop a VBA routine. In the meantime, I may have to tell the user to do something. Does anyone have any suggestions?

Conditional Formatting A Cells Number Format - Excel

View Content
In Excel 2007, I have a cell in Sheet1 with the named range of "currency" and data validation set to list, with currency symbols listed in the drop down. On Sheet1 I used conditional formatting to change the number format of certain cells to match the currency symbol selected in the drop down list using,for example, =currency="$" and it works fine. On Sheet2 I use the same conditional format statement and when I select a currency from the drop down on Sheet1 it will change the format once but if I select a different currency it won't change the number format. What's weird, is if not only do I set the conditional formatting to change the number format but the color of the cell as well, the cell color will change but the number format will not. Is this just a bug in excel or am I doing something wrong?

Thanks

Stoppig Excel From Auto-formatting Cells To Scientific Notation - Excel

View Content
Hi,

I am creating a csv file programatically to be opened by excel. One of the cells has the value equal to "26178E106".
When opening the csv with excel, it shows the value in scientific notation regardless of the formatting you set for the cell. Is there any way around this?

Thanks,

Conditional Formatting In Excel 2003 For Only Cell Format Number - Excel

View Content
Hello,

I am running Excel 2003 and I wish to apply conditional formatting to only cells with format Number. Does anyone knows an easy way of doing this or a VBA code for it?

I have tried on my own to write a code , but as I am new to VBA , I can't figure out how to make it work . The code supposed to compare all the numeric values from an uknown number of columns with numeric values from column B row by row and Bold the ones greater. The number of columns and rows is uknown because the data will be exported from another software to Excel , so bassically I wish to format a woorkbook to automatically do that.
The code is below:

VB:

Sub ConvertsFontStyletoBold() 
     
    Dim Count As Integer 
    Dim Count1 As Integer 
    Dim nr1 As Range 
    Dim nr2 As Range 
    Dim nr3 As Range 
    Dim nr4 As Range 
    Dim nr5 As Range 
    Dim nr6 As Range 
    Dim nr7 As Range 
    Dim nr8 As Range 
     
     
    Set nr1 = Range("A65536").End(xlUp) 
    nr1.Select 
    Set nr2 = Range("a1").End(xlToRight) 
    nr2.Select 
    Count = Range("A1", nr2).Columns.Count - 1 
    Set nr3 = Range("A1", nr1.Offset(0, Count)) 
    nr3.Name = "Data" 
    nr3.Select 
    Set nr4 = Range("B65536").End(xlUp) 
    nr4.Select 
    Set nr5 = Range("B7", nr4) 
    nr5.Select 
    Set nr6 = Range("D7").End(xlToRight) 
    nr6.Select 
    Set nr7 = Range("D65536").End(xlUp) 
    nr7.Select 
    Count = Range("D7", nr6).Columns.Count - 1 
    Set nr8 = Range("D7", nr7.Offset(0, Count)) 
    nr8.Name = "Values" 
    nr8.Select 
     
    For Each r In nr8.Rows 
        i = r.Row 
        r.Select 
        If IsNumeric(Cells(r)) = True And r.xlCellValue > nr5.xlCellValue = True Then 
            cell.Font.Bold = True 
        End If 
         
    Next r 
     
End Sub 


If you like these VB formatting tags please consider sponsoring me in support of injured Royal Marines




Thank you very much for any help received.

16 Digit Number Converting To Scientific - Excel

View Content
Why do 16 digit numbers convert? Is there a way to format the cell rather than adding the ' in front of the number to stop the conversion?
This number 4.50542E+15 should look like 4505420254200425, but when I add the ' in front of the number the last digit changes to zero 4505420254200420. Every time we miss this, it costs us money.

Convert Scientific Notation To A Number - Excel

View Content
I would like to convert a scientific notation to a number. Example,
6.10002E+11.


How To Change The Number Format From Number To Text Format With Decimal Values - Excel

View Content
Hi,

I need a macro which will help me in changing the format of a cell containing Number to Text Format without change in Decimal Values.

i.e for eg . in a Cell if we use some formula & get some numeric value let say 10000.00. Now i have to remove formula & I have to retain only value but the format should be "TEXT" i.e 10000.00 only.

I tried doing it maually but when i do this i am getting value as 10000 not 10000.00 .
102.10 is displayed as 102.1 --- 1002.50 as 1002.5---- 1002.00 as 1002 etc

i,e decimals r not displayed

I want the value with two decimals .ie 102.03 , 1001.01 etc.

Please assist me

Make Number Formatting Real, Not Just Format - Excel

View Content
hi

i have a series of 10 digit numbers which I want to turn into a string of numbers each 2 digits long with some character in between. I figured out how to do it with number formatting (00-00-00-00-00) BUT the real reason I need it is because I want to do an extensive FIND and REPLACE but it won't recognise the formatting, only the original value...

any ideas about how to be able to apply this sort of pattern to the number...?

Random Tutorials
FV() Find the Future Value of Cash Today
         -Savings/Retirement Plan Calculations

(Intermediate)
Extract Text from Cells - Intermediate Example
(Intermediate)
Introduction to Making Formulas in Excel
(Easy)
HLOOKUP() Function - Introduction
(Intermediate)
Link Cells Between Worksheets
(Easy)
Formatting Worksheets for Printing in Excel
(Easy)
Submit Inquiry Here
  • Prices From $10
Name:*
E-mail:*
Request:*
The macro(s) on this page will be sent with the request.
Contact | Privacy Policy | Disclaimer
Copyright© 2012 TeachExcel.com