Hi,
I want to create a simple UFD that would allow me to copy the contents of one cell to another. I'm learning that UDF's wouldn't allow this, but would it be possible to get the UDF to ask for the two cell locations ie:
FUNCTION COPYCELL(FROM, TO)
CALL SUB COPYCELL()
END FUNCTION
then pass this as variables to be read by a subroutine, ie
SUB COPYCELL()
TO = FROM
END SUB
The idea is to enable me to STORE data in specific cells based on certain conditions.
Look forward to your assistance...
Michael
I want to create a simple UFD that would allow me to copy the contents of one cell to another. I'm learning that UDF's wouldn't allow this, but would it be possible to get the UDF to ask for the two cell locations ie:
FUNCTION COPYCELL(FROM, TO)
CALL SUB COPYCELL()
END FUNCTION
then pass this as variables to be read by a subroutine, ie
SUB COPYCELL()
TO = FROM
END SUB
The idea is to enable me to STORE data in specific cells based on certain conditions.
Look forward to your assistance...
Michael