I want to divide a number in two parts so the sum of the parts is equal to the input number.
For example,
3.00 divided in two parts would be 3.00 = 1.50 + 1.50
but 4.99 divided in two parts should be 4.99 = 2.50 + 2.49
Input:
3.00
4.99
After running a macro should be:
ColumnA ColumnB
3.00 ....... 1.50
(blank cell) 1.50
4.99 ....... 2.50
(blank cell) 2.49
Also the second part should be inserted below the first part.