Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You may want to use .value2. It makes a difference if the cell is formatted as
a date or currency: Workbooks(cCurrent_Quote_ID).Worksheets(4).Range(" D19").Value = _ Workbooks(ThisWorkbook.Name).Sheets("Cat Over $15K Form").Range("D19").Value2 mandalorian2 wrote: I have a function which just sets the values several cells in one workbook equal to the values of the cells in another workbook. When I do this some cells get rounded oddly. For example: the source cell formatted as a 3 decimal place currency cell and is rounded to three decimal places using this equation "=ROUND('Raw Data'!V7/(1-C4),3)" ('Raw Data'!V7 is pulled from a SQL DB and is equal to 0.372512437810945) C4=15%, so the source cell should equal exactly 0.438 which is what is displayed. The recieving cell which happens to be in another workbook is formatted as a 3 decimal place currency cell. I use the following line of code to set the values: Workbooks(cCurrent_Quote_ID).Worksheets(4).Range(" D19").Value = Workbooks(ThisWorkbook.Name).Sheets("Cat Over $15K Form").Range("D19").Value This works fine except that the value in the recieving cell is set to 0.440 this is a price per unit so in large quantities this can make a serious difference. Does anyone have any idea what could be causing this? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to display rounded number in a cell w/formula | Excel Discussion (Misc queries) | |||
Need formula to have date in cell B2 rounded to first of next mont | Excel Worksheet Functions | |||
zero's in excel cell getting rounded off | Excel Programming | |||
Cell value rounded to the tenth! | Excel Programming | |||
Why my cell format is not copied when I copied workbook? | Excel Programming |