Cheeky Little Two for......

Sykovampyr

Board Regular
Joined
Nov 3, 2006
Messages
71
Hi Guys,

I have two REALLY quick ones!

I need a formula beaded on a Percentage result in H3. If the percentage is below 50% I need a text result saying ACTION, If it is between 50% and 80% I need a Result Saying MOVE and 80%+ I need a Result saying GREAT, I have tried:

=IF(H3>79.999%,"GREAT"),IF(H3>49.99%,"ACTION"),IF(H3<50%>79.998%,"MOVE")

But just get VALUE as the result.........

Also is there a way to get A1 in a sheet to display the Tab Name?

Thanks a million!
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
try like this
=IF(H3>79.999%,"GREAT",IF(H3>49.99%,"ACTION",IF(AND(H3>50%,H3<79.998%),"MOVE",0)))
 
Upvote 0
Code:
=if(h3>=80%,"great",if(h3<50%,"action","move"))
 
Upvote 0
For Q2 try

=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("filename",A1)))
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,813
Members
452,945
Latest member
Bib195

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