margieh204
New Member
- Joined
- Feb 4, 2013
- Messages
- 2
I'm trying to determine the VB for a macro that will replace the values in a column by the the results of the calculation of that same value + (row number/ 100000). At the present, I am creating an additional column and using the following formula:
IF(E2>=1, (E2+(ROW(E2)/10000000000)), "")
What I need is for the resulting value to replace the original value in E2. Sorry for the redundancy. This is needed so that vlookups can be preformed on the actual values as attained through a combination of Rankings and MIN/ MAX value determinations on multiple worksheets within the same workbook. I only want to alter the original values slightly, so that the data set will contain all unique values. I need this calculation to be done to three growing columns of data.
I plan to attach this macro to a form button on the sheet where the data is located.
Thanks in advance.
IF(E2>=1, (E2+(ROW(E2)/10000000000)), "")
What I need is for the resulting value to replace the original value in E2. Sorry for the redundancy. This is needed so that vlookups can be preformed on the actual values as attained through a combination of Rankings and MIN/ MAX value determinations on multiple worksheets within the same workbook. I only want to alter the original values slightly, so that the data set will contain all unique values. I need this calculation to be done to three growing columns of data.
I plan to attach this macro to a form button on the sheet where the data is located.
Thanks in advance.