View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bommel Bommel is offline
external usenet poster
 
Posts: 1
Default How do i enable a function to change other cells?

i want to write a function that automatically fills other cells so i can
have a dynamic design.
here is my testfunction, if you tell me what to do to make it work, i can do
the rest alone:

public function test(text as string) as string
Cells(1, 2).value = "it works"
test = text
end function

thanks for your help
bommel