|
-
December 28th, 2004, 03:44 PM
#1
Flabooble!
Excel Question
This seems like a simple question but it's not from what I can see.
I want to have a field display an X of anything in 4 other fields is a number above 70.
I.E. - If E2 or F2 or G2 or H2 are > 70 make an X in I2.
Can anyone point me in the right direction here?
-
December 28th, 2004, 03:51 PM
#2
Laptops/Notebooks/PDA Mod
 Originally Posted by ilovetheusers
This seems like a simple question but it's not from what I can see.
I want to have a field display an X of anything in 4 other fields is a number above 70.
I.E. - If E2 or F2 or G2 or H2 are > 70 make an X in I2.
Can anyone point me in the right direction here?
You could use the conditional formatting found under the format menu I believe.
-
December 28th, 2004, 03:52 PM
#3
Registered User
NooNoo is a genius in Excel, she's got the skills to sort this out.
-
December 28th, 2004, 03:53 PM
#4
Laptops/Notebooks/PDA Mod
Wait - scratch that, that will only format the cell, not display certain text.
-
December 28th, 2004, 03:54 PM
#5
Tech-To-Tech Mod
VBA for excel might also be a nice option if you can program the least littlest bit in VB
-
December 28th, 2004, 04:00 PM
#6
Laptops/Notebooks/PDA Mod
Use the insert function, and then use the if function.
-
December 28th, 2004, 04:29 PM
#7
Tech-To-Tech Mod
 Originally Posted by 3fingersalute
Use the insert function, and then use the if function.
if function works great for simple if then else statements. I use it alot for simple if statements like
=if(c2-1,c3="yes",c3="no")
so if c2 =1 then c3 = yes else c3 = no
you MIGHT be able to use the if function with a ton of nested else if, but the function would be pretty cumbersome IF it would work ( )
with what ILTU wants to do you'd need the ability to include the OR operator.
VBA code in a sheet macro would be the best solution IMO
if c2 = 1 or c1 = 1 then
c3 = yes
else
c3 = no
end if
much cleaner
Nonsense prevails, modesty fails
Grace and virtue turn into stupidity - E. Costello
-
December 28th, 2004, 04:45 PM
#8
Registered User
=if(or(a1>70,b1>70,c1>70,d1>70),"x","")
-
January 6th, 2005, 12:57 PM
#9
Flabooble!
 Originally Posted by hudsonsmith
=if(or(a1>70,b1>70,c1>70,d1>70),"x","")
OMG this works perfectly!!!!!!!! You are the man!!!!!!!!!!!!!!!!!!!!!!!!
Similar Threads
-
By 70-240 in forum Certification
Replies: 14
Last Post: February 20th, 2012, 03:35 AM
-
By TechZ in forum Microsoft Office
Replies: 0
Last Post: December 12th, 2004, 04:55 AM
-
By billgman in forum Microsoft Office
Replies: 5
Last Post: November 19th, 2004, 11:37 AM
-
By anyone in forum Microsoft Office
Replies: 1
Last Post: April 13th, 2002, 10:32 PM
-
By joelen in forum Tech-To-Tech
Replies: 4
Last Post: November 14th, 2001, 12:43 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|
Bookmarks