bryan wrote...
>I want to create a range of results in one worksheet based on a range
>of input values in another worksheet in the same workbook. I've
[quoted text clipped - 10 lines]
>The code runs o.k. but the range isn't cleared and zero is returned. I
>thought I was getting the hang of VBA but this has stumped me.
This isn't well documented, but VBA procedures called from worksheet
formulas can't change anything in the Excel environment.
When do you want to clear the results range? Why do you need to clear
the results range rather than write formulas in it which could display
nothing (so appear cleared) when there's no corresponding inputs?
bryan@balfour.me.uk - 19 Jan 2005 08:49 GMT
> This isn't well documented, but VBA procedures called from worksheet
> formulas can't change anything in the Excel environment.
>
> When do you want to clear the results range? Why do you need to clear
> the results range rather than write formulas in it which could display
> nothing (so appear cleared) when there's no corresponding inputs?
Thanks for replying.
The result range is a subset of the input range selected randomly. In
randomly selecting from the input rage, I wanted to avoid duplicates by
scanning the entries already selected. To make sure that the result
range is initially empty, I wanted to clear it.