Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Prevent deleting functions

I have a document set up with IF statements to auto populate redundant
information. For example: the customer bill to address and the customer ship
to address. If the information is different they can type over my function-
but then it is gone. Is there a way to keep the function there without doing
save as each time?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Prevent deleting functions

Use another cell for input. In the cell where it should be, enter a formula like

=IF(A2="",A1,A2)

With addresses in A1 and A2.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
|I have a document set up with IF statements to auto populate redundant
| information. For example: the customer bill to address and the customer ship
| to address. If the information is different they can type over my function-
| but then it is gone. Is there a way to keep the function there without doing
| save as each time?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Prevent deleting functions

That is how my statements are set up, they auto populate from the customer
bill to address into the customer site address- but if the address is
different, they type in the same box over my function. In your scenario below
it would be A2.

Is there a way to enter for example cell c2 enter formula:
=IF(a2<"",b2=a2,"") this way the actual cell for input (being b2) has no
formula to type over.

"Niek Otten" wrote:

Use another cell for input. In the cell where it should be, enter a formula like

=IF(A2="",A1,A2)

With addresses in A1 and A2.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
|I have a document set up with IF statements to auto populate redundant
| information. For example: the customer bill to address and the customer ship
| to address. If the information is different they can type over my function-
| but then it is gone. Is there a way to keep the function there without doing
| save as each time?



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Prevent deleting functions

What I meant is: If you print your data from C1 and C2, let the user input it in A1 and A2. In C1, use this formula:

=A1

In C2, use this formula:

=IF(A2="",A1,A2)


--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
| That is how my statements are set up, they auto populate from the customer
| bill to address into the customer site address- but if the address is
| different, they type in the same box over my function. In your scenario below
| it would be A2.
|
| Is there a way to enter for example cell c2 enter formula:
| =IF(a2<"",b2=a2,"") this way the actual cell for input (being b2) has no
| formula to type over.
|
| "Niek Otten" wrote:
|
| Use another cell for input. In the cell where it should be, enter a formula like
|
| =IF(A2="",A1,A2)
|
| With addresses in A1 and A2.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "JKeef" wrote in message ...
| |I have a document set up with IF statements to auto populate redundant
| | information. For example: the customer bill to address and the customer ship
| | to address. If the information is different they can type over my function-
| | but then it is gone. Is there a way to keep the function there without doing
| | save as each time?
|
|
|


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Prevent deleting functions

I understand, but the user is entering the information once, maybe twice.
Is there a way to place the results of an IF statement in another cell?
Type in cell z1=If(A2<"",c2=a2,c2="") Maybe an IF THEN statement?


"Niek Otten" wrote:

What I meant is: If you print your data from C1 and C2, let the user input it in A1 and A2. In C1, use this formula:

=A1

In C2, use this formula:

=IF(A2="",A1,A2)


--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
| That is how my statements are set up, they auto populate from the customer
| bill to address into the customer site address- but if the address is
| different, they type in the same box over my function. In your scenario below
| it would be A2.
|
| Is there a way to enter for example cell c2 enter formula:
| =IF(a2<"",b2=a2,"") this way the actual cell for input (being b2) has no
| formula to type over.
|
| "Niek Otten" wrote:
|
| Use another cell for input. In the cell where it should be, enter a formula like
|
| =IF(A2="",A1,A2)
|
| With addresses in A1 and A2.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "JKeef" wrote in message ...
| |I have a document set up with IF statements to auto populate redundant
| | information. For example: the customer bill to address and the customer ship
| | to address. If the information is different they can type over my function-
| | but then it is gone. Is there a way to keep the function there without doing
| | save as each time?
|
|
|





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Prevent deleting functions

A formula cannot send a value to another cell.

Formulas "pull", they don't "push".


Gord Dibben MS Excel MVP

On Tue, 9 Sep 2008 14:13:01 -0700, JKeef
wrote:

I understand, but the user is entering the information once, maybe twice.
Is there a way to place the results of an IF statement in another cell?
Type in cell z1=If(A2<"",c2=a2,c2="") Maybe an IF THEN statement?


"Niek Otten" wrote:

What I meant is: If you print your data from C1 and C2, let the user input it in A1 and A2. In C1, use this formula:

=A1

In C2, use this formula:

=IF(A2="",A1,A2)


--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
| That is how my statements are set up, they auto populate from the customer
| bill to address into the customer site address- but if the address is
| different, they type in the same box over my function. In your scenario below
| it would be A2.
|
| Is there a way to enter for example cell c2 enter formula:
| =IF(a2<"",b2=a2,"") this way the actual cell for input (being b2) has no
| formula to type over.
|
| "Niek Otten" wrote:
|
| Use another cell for input. In the cell where it should be, enter a formula like
|
| =IF(A2="",A1,A2)
|
| With addresses in A1 and A2.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "JKeef" wrote in message ...
| |I have a document set up with IF statements to auto populate redundant
| | information. For example: the customer bill to address and the customer ship
| | to address. If the information is different they can type over my function-
| | but then it is gone. Is there a way to keep the function there without doing
| | save as each time?
|
|
|




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Prevent deleting functions

Thank you. That's my answer.
I'll have to come up with plan B

"Gord Dibben" wrote:

A formula cannot send a value to another cell.

Formulas "pull", they don't "push".


Gord Dibben MS Excel MVP

On Tue, 9 Sep 2008 14:13:01 -0700, JKeef
wrote:

I understand, but the user is entering the information once, maybe twice.
Is there a way to place the results of an IF statement in another cell?
Type in cell z1=If(A2<"",c2=a2,c2="") Maybe an IF THEN statement?


"Niek Otten" wrote:

What I meant is: If you print your data from C1 and C2, let the user input it in A1 and A2. In C1, use this formula:

=A1

In C2, use this formula:

=IF(A2="",A1,A2)


--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"JKeef" wrote in message ...
| That is how my statements are set up, they auto populate from the customer
| bill to address into the customer site address- but if the address is
| different, they type in the same box over my function. In your scenario below
| it would be A2.
|
| Is there a way to enter for example cell c2 enter formula:
| =IF(a2<"",b2=a2,"") this way the actual cell for input (being b2) has no
| formula to type over.
|
| "Niek Otten" wrote:
|
| Use another cell for input. In the cell where it should be, enter a formula like
|
| =IF(A2="",A1,A2)
|
| With addresses in A1 and A2.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "JKeef" wrote in message ...
| |I have a document set up with IF statements to auto populate redundant
| | information. For example: the customer bill to address and the customer ship
| | to address. If the information is different they can type over my function-
| | but then it is gone. Is there a way to keep the function there without doing
| | save as each time?
|
|
|





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
Prevent deleting multiple cells at once Horatio J. Bilge, Jr. Excel Discussion (Misc queries) 2 October 12th 07 03:20 PM
How can I prevent someone from deleting a shared workbook? Brian Excel Worksheet Functions 2 May 19th 06 02:49 PM
How to prevent Excel from deleting leading zeros? ljCharlie Excel Discussion (Misc queries) 1 October 31st 05 10:04 PM
how prevent formula in cell from deleting when deleting value???? sh-boom New Users to Excel 1 September 30th 05 06:12 PM
How do I prevent someone from deleting a workbook? JSP Excel Discussion (Misc queries) 5 September 5th 05 04:51 PM


All times are GMT +1. The time now is 10:34 AM.

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

About Us

"It's about Microsoft Excel"