Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
FC FC is offline
external usenet poster
 
Posts: 130
Default Conditional or Indirect fill up

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 76
Default Conditional or Indirect fill up

In B1 type the formula

=IF(A10,"yes","")

In this case I chose the word "Yes" as the word of your choice.

"FC" wrote:

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.misc
FC FC is offline
external usenet poster
 
Posts: 130
Default Conditional or Indirect fill up

Thanks Teddy-B, but A1 ( or column A) will have different
names or numbers and then B1 ( column B ) will change accordinly.
ej. A1 orange - B1 navels
A2 5228 - B2 apples
A3 grapes - B3 small. Thanks
"Teddy-B" wrote:

In B1 type the formula

=IF(A10,"yes","")

In this case I chose the word "Yes" as the word of your choice.

"FC" wrote:

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Conditional or Indirect fill up

Sounds like you could use a lookup table and some VLOOKUP formulas in column B.

See Debra Dalgleish's site for more on VLOOKUP and Data
Validation lists for entering the choices.

http://www.contextures.on.ca/xlFunctions02.html

http://www.contextures.on.ca/xlDataVal01.html

Note the section on using DV lists from another worksheet by naming the list.


Gord Dibben MS Excel MVP

On Sat, 26 May 2007 17:11:02 -0700, FC wrote:

Thanks Teddy-B, but A1 ( or column A) will have different
names or numbers and then B1 ( column B ) will change accordinly.
ej. A1 orange - B1 navels
A2 5228 - B2 apples
A3 grapes - B3 small. Thanks
"Teddy-B" wrote:

In B1 type the formula

=IF(A10,"yes","")

In this case I chose the word "Yes" as the word of your choice.

"FC" wrote:

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.


  #5   Report Post  
Posted to microsoft.public.excel.misc
FC FC is offline
external usenet poster
 
Posts: 130
Default Conditional or Indirect fill up

Thanks Gord Dibben, but all cells in column A will change frecuentely and as
I change them I want B to change accordinly too. Also is too much information
for a dropdown list ( the changing words or numbers ). TX

"Gord Dibben" wrote:

Sounds like you could use a lookup table and some VLOOKUP formulas in column B.

See Debra Dalgleish's site for more on VLOOKUP and Data
Validation lists for entering the choices.

http://www.contextures.on.ca/xlFunctions02.html

http://www.contextures.on.ca/xlDataVal01.html

Note the section on using DV lists from another worksheet by naming the list.


Gord Dibben MS Excel MVP

On Sat, 26 May 2007 17:11:02 -0700, FC wrote:

Thanks Teddy-B, but A1 ( or column A) will have different
names or numbers and then B1 ( column B ) will change accordinly.
ej. A1 orange - B1 navels
A2 5228 - B2 apples
A3 grapes - B3 small. Thanks
"Teddy-B" wrote:

In B1 type the formula

=IF(A10,"yes","")

In this case I chose the word "Yes" as the word of your choice.

"FC" wrote:

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Conditional or Indirect fill up

OK forget the DV dropdowns, but the lookup table should work for you.

Unless you are entering words in column A that wouldn't be on any table.

Table on sheet2 in A1:B3 or any range you like.

Column A contains your words to enter.........orange, 5228, grapes

Column B contains your words to appear..........navels, apples, small

In B1 of sheet1 enter =VLOOKUP(A1,Sheet1!$A$1:$B$3,2,FALSE)

In A1 of sheet1 enter orange and see what is returned to B1


Gord

On Sat, 26 May 2007 19:15:00 -0700, FC wrote:

Thanks Gord Dibben, but all cells in column A will change frecuentely and as
I change them I want B to change accordinly too. Also is too much information
for a dropdown list ( the changing words or numbers ). TX

"Gord Dibben" wrote:

Sounds like you could use a lookup table and some VLOOKUP formulas in column B.

See Debra Dalgleish's site for more on VLOOKUP and Data
Validation lists for entering the choices.

http://www.contextures.on.ca/xlFunctions02.html

http://www.contextures.on.ca/xlDataVal01.html

Note the section on using DV lists from another worksheet by naming the list.


Gord Dibben MS Excel MVP

On Sat, 26 May 2007 17:11:02 -0700, FC wrote:

Thanks Teddy-B, but A1 ( or column A) will have different
names or numbers and then B1 ( column B ) will change accordinly.
ej. A1 orange - B1 navels
A2 5228 - B2 apples
A3 grapes - B3 small. Thanks
"Teddy-B" wrote:

In B1 type the formula

=IF(A10,"yes","")

In this case I chose the word "Yes" as the word of your choice.

"FC" wrote:

I'm trying to get a formula ( 1st choice) or conditional formating that will
do this :
When writing a number or text in A1 for example, another word of my choice
will fill B1. No macros unless there is no other choice please. Thanks.




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
Fill an Indirect Statement D Excel Discussion (Misc queries) 4 November 20th 06 07:21 PM
Conditional fill Pa Maher Excel Discussion (Misc queries) 1 September 19th 06 04:08 AM
Conditional Auto fill naijaexcel Excel Discussion (Misc queries) 1 August 22nd 06 02:11 AM
conditional fill colour AK Excel Discussion (Misc queries) 3 April 7th 06 02:38 PM
Formula ABSOLUTE with INDIRECT - Is Fill Down Possible? Sam via OfficeKB.com Excel Worksheet Functions 3 November 28th 05 02:17 AM


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