Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default =FORMULA(CELL(A1)) ?

French version bellow
___________________________________

Hi,

I have an excel's worksheet with cellule having the same formula.
I change often this formula.
Existing a way to make something like bellow ?
=FORMULA(CELL(A1))

thanx


_________________________________

Bonjour,

J'ai un classeur excel avec beacoup de cellule ou la formule est la meme.
Il m'arrive souvent de modifier cette formule.
je voudrais savoir s'il existe un moyen de faire quelque chose dans ce
style:
=FORMULE(CELLULE(A1))

sachant que FORMULE n'existe pas et que CELLULE ne sert pas vraiment à ca.

Merci


--
Olivier SOW
*****************
Service informatique
Espace Compétences


tel 33 (0)4 42 82 43 37
fax 33 (0)4 42 82 43 32

Centre de vie Agora
Bat A - ZI des paluds
13781 AUBAGNE


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default =FORMULA(CELL(A1)) ?

What is the formula?


"Olivier SOW" wrote in message
...
French version bellow
___________________________________

Hi,

I have an excel's worksheet with cellule having the same formula.
I change often this formula.
Existing a way to make something like bellow ?
=FORMULA(CELL(A1))

thanx


_________________________________

Bonjour,

J'ai un classeur excel avec beacoup de cellule ou la formule est la meme.
Il m'arrive souvent de modifier cette formule.
je voudrais savoir s'il existe un moyen de faire quelque chose dans ce
style:
=FORMULE(CELLULE(A1))

sachant que FORMULE n'existe pas et que CELLULE ne sert pas vraiment à ca.

Merci


--
Olivier SOW
*****************
Service informatique
Espace Compétences


tel 33 (0)4 42 82 43 37
fax 33 (0)4 42 82 43 32

Centre de vie Agora
Bat A - ZI des paluds
13781 AUBAGNE



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,092
Default =FORMULA(CELL(A1)) ?

You can Name the formula the same way you would name a range,
Insert/Name/Define. Then use that name in the cells that need the formula.
Then you can edit the formula from now on in Insert/Name/Define for all the
cells that refer to that formula name.

Mike F
"Olivier SOW" wrote in message
...
French version bellow
___________________________________

Hi,

I have an excel's worksheet with cellule having the same formula.
I change often this formula.
Existing a way to make something like bellow ?
=FORMULA(CELL(A1))

thanx


_________________________________

Bonjour,

J'ai un classeur excel avec beacoup de cellule ou la formule est la meme.
Il m'arrive souvent de modifier cette formule.
je voudrais savoir s'il existe un moyen de faire quelque chose dans ce
style:
=FORMULE(CELLULE(A1))

sachant que FORMULE n'existe pas et que CELLULE ne sert pas vraiment à ca.

Merci


--
Olivier SOW
*****************
Service informatique
Espace Compétences


tel 33 (0)4 42 82 43 37
fax 33 (0)4 42 82 43 32

Centre de vie Agora
Bat A - ZI des paluds
13781 AUBAGNE



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default =FORMULA(CELL(A1)) ?

Mike can you possibly give an example of a formula before and after
converting it using your method (if you see what I mean).

I have always used UDF's and have obviously missed your approach somehow.

Ta

Andi

"Mike Fogleman" wrote in message
...
You can Name the formula the same way you would name a range,
Insert/Name/Define. Then use that name in the cells that need the formula.
Then you can edit the formula from now on in Insert/Name/Define for all the
cells that refer to that formula name.

Mike F
"Olivier SOW" wrote in message
...
French version bellow
___________________________________

Hi,

I have an excel's worksheet with cellule having the same formula.
I change often this formula.
Existing a way to make something like bellow ?
=FORMULA(CELL(A1))

thanx


_________________________________

Bonjour,

J'ai un classeur excel avec beacoup de cellule ou la formule est la meme.
Il m'arrive souvent de modifier cette formule.
je voudrais savoir s'il existe un moyen de faire quelque chose dans ce
style:
=FORMULE(CELLULE(A1))

sachant que FORMULE n'existe pas et que CELLULE ne sert pas vraiment à ca.

Merci


--
Olivier SOW
*****************
Service informatique
Espace Compétences


tel 33 (0)4 42 82 43 37
fax 33 (0)4 42 82 43 32

Centre de vie Agora
Bat A - ZI des paluds
13781 AUBAGNE




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,092
Default =FORMULA(CELL(A1)) ?

In cell A1 put the number 1, in A2, 2, and in A3, 3. Select
Insert/Name/Define and in the Refers To box type =SUM($A$1:$A$3). Now name
it formula1. Go to any cell (except A1:A3 of course) and type = formula1.
The result will be 6. Excel will change the Refers To to show the sheet name
when you go back to Insert/Name/Define to look like this
=SUM(Sheet1!$A$1:$A$3). This naming formulas convention will also let you
get around the 7 nested IF statement restriction. If you create two named
formulas that have 6 nested IFs in each, you can use their names in another
If statement making a total of 13 Ifs that Excel would treat as only one.
ie. = If(formula1, formula2, formula3). See the possibilities?

Mike F

"Andibevan" wrote in message
...
Mike can you possibly give an example of a formula before and after
converting it using your method (if you see what I mean).

I have always used UDF's and have obviously missed your approach somehow.

Ta

Andi

"Mike Fogleman" wrote in message
...
You can Name the formula the same way you would name a range,
Insert/Name/Define. Then use that name in the cells that need the formula.
Then you can edit the formula from now on in Insert/Name/Define for all
the
cells that refer to that formula name.

Mike F
"Olivier SOW" wrote in message
...
French version bellow
___________________________________

Hi,

I have an excel's worksheet with cellule having the same formula.
I change often this formula.
Existing a way to make something like bellow ?
=FORMULA(CELL(A1))

thanx


_________________________________

Bonjour,

J'ai un classeur excel avec beacoup de cellule ou la formule est la meme.
Il m'arrive souvent de modifier cette formule.
je voudrais savoir s'il existe un moyen de faire quelque chose dans ce
style:
=FORMULE(CELLULE(A1))

sachant que FORMULE n'existe pas et que CELLULE ne sert pas vraiment à
ca.

Merci


--
Olivier SOW
*****************
Service informatique
Espace Compétences


tel 33 (0)4 42 82 43 37
fax 33 (0)4 42 82 43 32

Centre de vie Agora
Bat A - ZI des paluds
13781 AUBAGNE








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I make a blank cell in a formula cell with a range of cell Vi Excel Discussion (Misc queries) 5 June 21st 07 02:46 PM
adding a formula in a cell but when cell = 0 cell is blank Mike T Excel Worksheet Functions 5 May 31st 05 01:08 AM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 1 February 11th 05 06:36 AM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 0 February 11th 05 05:35 AM
Question: Cell formula or macro to write result of one cell to another cell Frederik Romanov Excel Programming 1 July 8th 03 03:03 PM


All times are GMT +1. The time now is 11:07 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"