#1   Report Post  
Posted to microsoft.public.excel.misc
Kim
 
Posts: n/a
Default Question on IF's

I know very basic excel. I'm trying to write a formula working with IF.

My question is if A2 is equal to H than I want it to reflect 1/2%, same
formula, if A2 is equal to I than I want it to reflect 1%.

I also want to ask Yes, No questions and it give me back a %.

Can someone pleeeeaaasssseee help me out with this.
Thank you very, very much!
Kim
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bearacade
 
Posts: n/a
Default Question on IF's


To answer your first part, try the following formula:

=IF(A2=H2, A2*0.005, IF(A2=I2, A2*0.01, "A2 doesn't not equal H2 or
I2"))

To do the second part, you must use VBA.. is that what you want?


--
Bearacade


------------------------------------------------------------------------
Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
View this thread: http://www.excelforum.com/showthread...hreadid=555635

  #3   Report Post  
Posted to microsoft.public.excel.misc
RagDyeR
 
Posts: n/a
Default Question on IF's

Basic IF formula, where if there is *no* match, the cell will look empty:

=If(A2="H",0.5%,If(A2="I",1.0%,""))

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Kim" wrote in message
...
I know very basic excel. I'm trying to write a formula working with IF.

My question is if A2 is equal to H than I want it to reflect 1/2%, same
formula, if A2 is equal to I than I want it to reflect 1%.

I also want to ask Yes, No questions and it give me back a %.

Can someone pleeeeaaasssseee help me out with this.
Thank you very, very much!
Kim


  #4   Report Post  
Posted to microsoft.public.excel.misc
Spreadsheet
 
Posts: n/a
Default Question on IF's


=IF(A2="H",0.005,IF(A2="I",0.01,))

this should work for the first part of your question. To modify it for
the second part of your question, simply substitute "Yes" and "No" for
"H" and "I" as well as the numbers that are returned.


--
Spreadsheet
------------------------------------------------------------------------
Spreadsheet's Profile: http://www.excelforum.com/member.php...o&userid=34730
View this thread: http://www.excelforum.com/showthread...hreadid=555635

  #5   Report Post  
Posted to microsoft.public.excel.misc
Bernard Liengme
 
Posts: n/a
Default Question on IF's

If A2 = "H" then you want another cell to display 1/2%, if A2 is "I" the
other cell is to display 1%, otherwise nothing is to be displayed?
=IF(A2="H",0.005,IF(A2="I",0.01,""))
You will need to format the cell to display percentage - use the % tool. You
will get 0.5% not 1/2 %
best wishes

--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Kim" wrote in message
...
I know very basic excel. I'm trying to write a formula working with IF.

My question is if A2 is equal to H than I want it to reflect 1/2%, same
formula, if A2 is equal to I than I want it to reflect 1%.

I also want to ask Yes, No questions and it give me back a %.

Can someone pleeeeaaasssseee help me out with this.
Thank you very, very much!
Kim



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
Possibly a loaded question, but I think mileslit Excel Discussion (Misc queries) 1 September 10th 05 01:18 AM
How do I find and replace a question mark in Excel? Ranpalandil Excel Discussion (Misc queries) 1 September 7th 05 10:20 PM
Newbie With A Question Michael Excel Worksheet Functions 0 July 28th 05 11:50 PM
Anybody Help with previous question Anthony Excel Discussion (Misc queries) 1 July 26th 05 01:26 PM
Hints And Tips For New Posters In The Excel Newsgroups Gary Brown Excel Worksheet Functions 0 April 15th 05 05:47 PM


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