If cell is blank pull information from another cell

BPMWall

New Member
Joined
Apr 30, 2015
Messages
9
Hi,

I really need help with the following formula. I have 3 columns A1, B1, C1. I need a formula that states if A1, is blank, then go to B1, but if B1 is blank go to C1. Once it pulls the #, then I need the formula to look at that number and if it is greater than 25 "Award 1", if it is greater than 25 but less than 75, "award 2", greater than 75, "award 3"

Appreciate all the help.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
One of?

1.

="Award "&MATCH(LOOKUP(9.99999999999999E+307,A1:C1),{0,25,75},1)

2.

="Award "&MATCH(LOOKUP(9.99999999999999E+307,CHOOSE({1,2,3},C1,B1,A1)),{0,25,75},1)
 
Upvote 0
Could you do this in two cells? For example, a column in D stating which number to go with and then:

D1 = IF(isnumber($A1),$A1,if(isnumber($B1),$B1,if(isnumber($C1),$C1,0)))
E1 = IF($D1<=25,"Award 1",IF(AND($D1>25,$D1<75),"Award 2",IF($D1>=75,"Award 3","No Award")))

You could then simply hide column D.
 
Upvote 0
In D1:
Code:
=IF(NOT(A1=""),IF(A1<=25,"Award1",IF(AND(A1>25,A1<75),"Award2","Award3")),IF(NOT(B1=""),IF(B1<=25,"Award1",IF(AND(B1>25,B1<75),"Award2","Award3")),IF(NOT(C1=""),IF(C1<=25,"Award1",IF(AND(C1>25,C1<75),"Award2","Award3")),"")))
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,478
Members
448,967
Latest member
visheshkotha

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