How to extract only interger value from a double value
Hi all, I have a textbox1 with value 1001.75 and want to move value into next textbox2 only 1001 and no decimals and don't want to round as well. Please help me becasue I tried this in many ways.
Use the CStr(somevalue) to move the whole number into a string. Then use left(somestring , instr(1, somestring, ".") - 1) to move it into the other text box...
Comment