Division amidst aggregation macro?

E

efader

Hi:

I am aggregating data from multiple workbooks into one workbook. Due
to the way some of the data is formatted, I want to divide one of the
metrics by 100 prior to the macro pasting it into the aggregated
workbook.

How can I accomplish this?

Thanks,
Eric
 
J

Jim Cone

Dim X as Double
X = Range("B5").Value
Range("B5").Value = Range("B5").Value / 100
ActiveSheet.UsedRange.Copy
Range("B5").Value = X
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"efader"

I am aggregating data from multiple workbooks into one workbook. Due
to the way some of the data is formatted, I want to divide one of the
metrics by 100 prior to the macro pasting it into the aggregated
workbook.
How can I accomplish this?
Thanks,
Eric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top