View Single Post
  #3   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
Dmitry Kopnichev Dmitry Kopnichev is offline
external usenet poster
 
Posts: 17
Default How to replace a function with its resulting reference in a formula?

The formulas are sums of HLOOKUP functions, for example
=HLOOKUP(1...)+HLOOKUP(2...). I have to change the formulas to sums of
references, from which the HLOOKUP functions returend values, for example
=b11+z11.
"Tom Ogilvy" сообщил/сообщила в новостях следующее:
...
Is this a total discovery requirement - in other words you don't know
anything about the formula in the cells, so you would have to parse the
formula and have procedures to handle any excel function which might be
there?

Please describe your rules for how each function should be handled and all
combinations of functions.

--
Regards,
Tom Ogilvy


"Dmitry Kopnichev" wrote in message
...
Hello
How to replace a function with its resulting reference in a formula? For
example, How to replace =HLOOKUP(1...)+HLOOKUP(2...) with =b11+z11. I

need
to replace in 1000 formulas/cells automatically.