I have this formula, which takes two numbers in two cells, performs a division and places the value into a cell. However, this method causes the output to be a integer value.
wsProt.Range("E" & pdTableCount).Value = wsProt.Range("F" & pdTableCount).Value / wsProt.Range("D" & pdTableCount).Value
Is there a way to do this that will cause the value to be a value that provides for a decimal part without having to use an intermediary variable?
Also, I don't want the cell to be a formula, I just want the actual value for the division.
thanks!