Output Without Formula - Is there such an animal?

Mary25

New Member
Joined
Nov 14, 2005
Messages
2
I want to compare storage size for file folders from week to week because I want to be able to see which folders are increasing in size.

I have a directory listing utility that lists folders by path and size. The problem is the size is in bytes and cannot be changed to output in Megabytes. So I bring all the data into Excel and do a conversion from bytes to Megabytes.

For example:
ColA
2503513B

ColB =(ColA/100000)
25.04MB

The problem is once I've converted the "Column A - Byte” data, I don't want to keep it – I only want to work with the Megabyte figures. But if I attempt to delete ColA I (of course) lose my ColB values because their values are derived from caculating with ColA.

Is there a way, once a calculation is done, to output the data just as a number without the formula?

--Mary
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Mary

Copy and Paste Special>Values.

Or even better put the number you want to divide by in a cell, copy it, select the column with the bytes and Paste Special> Operation>Divide.
 
Upvote 0
Select the output, do Edit/Copy then do Edit/Paste Special/Values.
 
Upvote 0
Thank You!

I want to thank you both for the prompt replies. I read about using the "Paste Special" command in Help but couldn't get the sequence right and kept error-ing out.

Thank you again for the help.
--Mary
 
Upvote 0
Mary, when you copy and past the values, you should see a little clipboard at the bottom of the selection you just pasted, if you click on the clipboard you will be presented with a few options, select "values only". This will paste only the values from the functions in the parents cells.
 
Upvote 0
Are you willing to use a custom number format? (No calculations needed)
Book1
ABCD
1General FormatCustom Number Format: 0.00,, "MB"
225035132.50 MB
Sheet1


Custom Number Format
0.00,, "MB"
 
Upvote 0
Dividing by 100,000 is simply wrong. It is strange no one pointed that out. Even assuming that was a typo and you meant 1,000,000 it is still wrong.

A megabyte is defined not as by decimal powers but by powers of 2, i.e., it is not 10^6 or but rather 2^20 or 1048576 bytes.

True, some marketing types use 10^6 to define a megabyte but they are the only people who do so. All you have to do is check the properties of any file or folder on any computer. Assuming the OS provides the size in bytes and megabytes (or kilobytes) you'll see the difference is a factor of 2^20 (or 2^10 in the case of kilobytes).

Mary25 said:
I want to compare storage size for file folders from week to week because I want to be able to see which folders are increasing in size.

I have a directory listing utility that lists folders by path and size. The problem is the size is in bytes and cannot be changed to output in Megabytes. So I bring all the data into Excel and do a conversion from bytes to Megabytes.

For example:
ColA
2503513B

ColB =(ColA/100000)
25.04MB

The problem is once I've converted the "Column A - Byte” data, I don't want to keep it – I only want to work with the Megabyte figures. But if I attempt to delete ColA I (of course) lose my ColB values because their values are derived from caculating with ColA.

Is there a way, once a calculation is done, to output the data just as a number without the formula?

--Mary
 
Upvote 0

Forum statistics

Threads
1,207,089
Messages
6,076,518
Members
446,211
Latest member
b306750

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top