ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   If Statement Help (https://www.excelbanter.com/excel-discussion-misc-queries/199009-if-statement-help.html)

Stockwell43

If Statement Help
 
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%, 2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest rate
column?

Thanks!!

Bob Phillips

If Statement Help
 
Create a two column table elsewhere with the possible rates in one column,
loan types in the next, then use

=VLOOKUP(rate,lookup_table,2,False)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!




Pete_UK

If Statement Help
 
Assume Interest rate is in cell I2, then use this formula in your Loan Type
column:

=IF(I2=0,"Letter of Credit","")

then copy down. I suspect you will need other text returned if the
percentage is different, so post back with further details.

Hope this helps.

Pete

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!




Stockwell43

If Statement Help
 
Hi Bob,

Couldn't I use an If statemnt in the cell and just drag it down? I am not
familiar with Excel enough to do it the way you are suggestion.

Thanks!!

"Bob Phillips" wrote:

Create a two column table elsewhere with the possible rates in one column,
loan types in the next, then use

=VLOOKUP(rate,lookup_table,2,False)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!





Pete_UK

If Statement Help
 
Bob's is the more flexible solution, but you could do it like this:

=IF(I2="","",IF(I2=0,"Letter of Credit",IF(I2<=2.25%,"LOW
Rate",IF(I2<=5.0%,"HIGH Rate","Poor Risk"))))

Hope this helps.

Pete

On Aug 15, 5:31*pm, Stockwell43
wrote:
Hi Bob,

Couldn't I use an If statemnt in the cell and just drag it down? I am not
familiar with Excel enough to do it the way you are suggestion.

Thanks!!



"Bob Phillips" wrote:
Create a two column table elsewhere with the possible rates in one column,
loan types in the next, then use


=VLOOKUP(rate,lookup_table,2,False)


--
HTH


Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)


"Stockwell43" wrote in message
...
Hello,


My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:


In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.


What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"


How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?


Thanks!!- Hide quoted text -


- Show quoted text -



Stockwell43

If Statement Help
 
Hi Pete,

Thank you for your reply. Yes, this is exactly what I needed and worked
great.

Actually, this was all she needed. There were over 6000 records and she just
wanted an easy way to do this rather than going through each one indiviually.

Yes, Bob's way look like it would be more flexible and if this was a project
that was going to entail using this spreadsheet often I would have liked to
try his way but in this case it was a one time thing to give to the Auditor
for informational purposes only.

I appreciate your quick response and thank you agin for your help!!!

Have a great weekend!!!!!

"Pete_UK" wrote:

Assume Interest rate is in cell I2, then use this formula in your Loan Type
column:

=IF(I2=0,"Letter of Credit","")

then copy down. I suspect you will need other text returned if the
percentage is different, so post back with further details.

Hope this helps.

Pete

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!





Pete_UK

If Statement Help
 
You're welcome, and thanks for the feedback - glad it gave you what
you needed.

Pete

On Aug 15, 6:38*pm, Stockwell43
wrote:
Hi Pete,

Thank you for your reply. Yes, this is exactly what I needed and worked
great.

Actually, this was all she needed. There were over 6000 records and she just
wanted an easy way to do this rather than going through each one indiviually.

Yes, Bob's way look like it would be more flexible and if this was a project
that was going to entail using this spreadsheet often I would have liked to
try his way but in this case it was a one time thing to give to the Auditor
for informational purposes only.

I appreciate your quick response and thank you agin for your help!!!

Have a great weekend!!!!!



"Pete_UK" wrote:
Assume Interest rate is in cell I2, then use this formula in your Loan Type
column:


=IF(I2=0,"Letter of Credit","")


then copy down. I suspect you will need other text returned if the
percentage is different, so post back with further details.


Hope this helps.


Pete


"Stockwell43" wrote in message
...
Hello,


My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:


In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.


What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"


How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?


Thanks!!- Hide quoted text -


- Show quoted text -



Bob Phillips

If Statement Help
 
You could but it can only support eight types, and is more hassle to
maintain.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Stockwell43" wrote in message
...
Hi Bob,

Couldn't I use an If statemnt in the cell and just drag it down? I am not
familiar with Excel enough to do it the way you are suggestion.

Thanks!!

"Bob Phillips" wrote:

Create a two column table elsewhere with the possible rates in one
column,
loan types in the next, then use

=VLOOKUP(rate,lookup_table,2,False)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!







Bob Phillips

If Statement Help
 
.... and is a lot less efficient

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Bob Phillips" wrote in message
...
You could but it can only support eight types, and is more hassle to
maintain.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Stockwell43" wrote in message
...
Hi Bob,

Couldn't I use an If statemnt in the cell and just drag it down? I am not
familiar with Excel enough to do it the way you are suggestion.

Thanks!!

"Bob Phillips" wrote:

Create a two column table elsewhere with the possible rates in one
column,
loan types in the next, then use

=VLOOKUP(rate,lookup_table,2,False)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Stockwell43" wrote in message
...
Hello,

My boss needs me to do an IF statment on a spreadsheet. Here is what I
need:

In the Column "Interest Rate" the cells are percentages 0.00%, 5.50%,
2.25%
and so on. In the Loan Type Column are the loan types depending on the
Percentage Rate.

What I need is this:
If Interest rate is 0.00% then Loan Tpye is "Letter of Credit"

How do I get Excel to do this if the user enters 0.00% in the interest
rate
column?

Thanks!!









All times are GMT +1. The time now is 07:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com