Simple if statements

maunettia

New Member
Joined
Nov 5, 2011
Messages
10
This should be simple but I am new to if statements:
Column A has either a date or Pending or Not Taken type into the rows
If a particular row in Column A has a date then that same row in Column C should say "Funded"
If a particular row in Column A has Pending then that same row in Column C should say "Pending"
If a particular row in Column A has Not Taken then that same row in Column C should say "Not Taken"

How do I generated a working statement?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hello & Welcome to the Board,

Something like this...

=IF(ISNUMBER(A1),"Funded",IF(A1="Pending","Pending",IF(A1="Not Taken","Not Taken")))
 
Upvote 0
Did you put anything in A1? FALSE tells me A1 is blank...

Try...

=IF(ISBLANK(A1),"",IF(ISNUMBER(A1),"Funded",IF(A1="Pending","Pending",IF(A1="Not Taken","Not Taken"))))

or

=IF(A1<>"",IF(ISNUMBER(A1),"Funded",IF(A1="Pending","Pending",IF(A1="Not Taken","Not Taken"))),"")
 
Upvote 0
This should be simple but I am new to if statements:
Column A has either a date or Pending or Not Taken type into the rows
If a particular row in Column A has a date then that same row in Column C should say "Funded"
If a particular row in Column A has Pending then that same row in Column C should say "Pending"
If a particular row in Column A has Not Taken then that same row in Column C should say "Not Taken"

How do I generated a working statement?
You did not give us complete information. So, assuming that the only values that will be in Column A are a blank cell, a date or the text Pending or Not Taken, then this formula should work for you...

=IF(ISNUMBER(A1),"Funded",IF(A1="","",A1))
 
Upvote 0

Forum statistics

Threads
1,226,246
Messages
6,189,858
Members
453,575
Latest member
Taljanin

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