#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default IF THEN

I need to set-up a calculation. If there is a 1 in the cell to the left, then
the information in the cell to the right is transfered to another sheet. The
information to be transferred is alpha info.

Ex. it is for menu creation
if the guest choose this men, i place a 1 next to the item and the item
is entered into a proposal page. without having to retype or = the cell every
time.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default IF THEN

Cannot be done without a formula on second sheet to pull the data over.

Formulas cannot "push" to other cells or sheets.

You would requires some VBA code to do this.

A sample formula on sheet2 would be........

=IF(Sheet1!A1=1,Sheet1!B1)

Or to trap non-valid entries or a blank in A1 or B1

=IF(OR(Sheet1!A1="",(Sheet1!A1<1),(Sheet1!B1="")) ,"",Sheet1!B1)

If you want event code post back.


Gord Dibben MS Excel MVP

On Thu, 15 Nov 2007 15:40:00 -0800, Foodie
wrote:

I need to set-up a calculation. If there is a 1 in the cell to the left, then
the information in the cell to the right is transfered to another sheet. The
information to be transferred is alpha info.

Ex. it is for menu creation
if the guest choose this men, i place a 1 next to the item and the item
is entered into a proposal page. without having to retype or = the cell every
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



All times are GMT +1. The time now is 02:20 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"