Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to make a macro that copies a cell value that is in hex, converts it to decimal, increments that number by 1, converts that number to hex and then pastes it in the cell below.
The HEX2DEC command doesnt work from VBA module???? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Either that or I need to know how to get a macro to increase numbers counting in HEX....
|
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
application.Run "ATPVBAEN.XLA!Hex2DEc, Range("A1")"
from the immediate window: Range("A1").Value = "FB" ? application.Run( "ATPVBAEN.XLA!Hex2DEC", Range("A1")) 251 so Range("A1").Value = "FB" vVal = application.Run( "ATPVBAEN.XLA!Hex2DEC", Range("A1")) ? vVal 251 vVal = vVal + 1 Range("A2").Value = Application.Run( "ATPVBAEN.XLA!DEC2HEX", vVal) ? Range("A2").Value FC -- Regards, Tom Ogilvy "KevGrn114" wrote in message ... I want to make a macro that copies a cell value that is in hex, converts it to decimal, increments that number by 1, converts that number to hex and then pastes it in the cell below. The HEX2DEC command doesnt work from VBA module???? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|