FUNCTIONS USEING TEXT

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
WELCOME TO THE BOARD!

LIKE IF A3 HAS THE TEXT "D" THAN C3 WILL BE 7.5

In cell C3 you would put:

=if(A3="d",7.5,"")

This means that if A3 has D in it, then the cell will have 7.5. Otherwise, it will be blank ("").
 
Upvote 0
a) stop shouting (i.e. take of the caps lock!)

b) use a lookup table that relates letters to values & a lookup formula to return the correct values...check the help files on vlookup(), search this board for examples...

Paddy
 
Upvote 0
On 2002-10-14 16:18, CHAMLIN wrote:
THANK YOU
WHAT IF IT HAS MULTIPLE FUNCTIONS
LI IF A3=D C3=7.5 AND IF A3=T C3=9.5

A Visual Basic Macro works best, but here is the formula:

=if(A3="D",7.5,if(A3="T",9.5,""))

You can "nest" 7 "if" statements in one formula.
 
Upvote 0
On 2002-10-14 16:22, phantom1975 wrote:
On 2002-10-14 16:18, CHAMLIN wrote:
THANK YOU
WHAT IF IT HAS MULTIPLE FUNCTIONS
LI IF A3=D C3=7.5 AND IF A3=T C3=9.5

A Visual Basic Macro works best, but here is the formula:

=if(A3="D",7.5,if(A3="T",9.5,""))

You can "nest" 7 "if" statements in one formula.

I believe a VLOOKUP function works best here.
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top