I searched and couldn't make anything work that i found on rounding a range of cells. I have a range selected:
Range(Cells(therow, thecolumn), Cells(RowEnd, thecolumn + 2)).Select
I changed the number format like this:
Selection.NumberFormat = "0.00"
However, when i write to a text file, all the decimal places come back. How can i round the selected cells to the above "0.00" format in VBA. Thanks all!
Range(Cells(therow, thecolumn), Cells(RowEnd, thecolumn + 2)).Select
I changed the number format like this:
Selection.NumberFormat = "0.00"
However, when i write to a text file, all the decimal places come back. How can i round the selected cells to the above "0.00" format in VBA. Thanks all!