formula from a date in a different cell

j4ymf

Well-known Member
Joined
Apr 28, 2003
Messages
741
Office Version
  1. 365
Platform
  1. Windows
Hello I'm trying to create a work sheet but im stuck on the formula


im trying to get my value from H10 which = 2
my cell my formula goes in is I10
my date is in I7
End date is in F10

can I create a formula thats in I10 that looks at a date in I7 and if its less than the date in F10 places a value from H10

hope this makes sense

thank you Jason
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
can it be something like
=if(I6<F10),"H10"
 
Upvote 0
Upvote 0
Maybe
=if(I7< F10, H10,"")
 
Upvote 0
Thank you joe4 for your reply

=if(J6 > F10 < G10) = the value of I10

does that make more sense

jay
 
Upvote 0
If you want to check for two conditions like that, you need to use AND, i.e.
Code:
=IF(AND(J6 > F10, F10 < G10),I10,"")
 
Upvote 0
=IF(J6>F10<G10,I10,"") I get nothing. im want my answer to be the value of I10

=IF(J6>F10<G10=I10,"") I get false

getting there, thank you for your help so far
 
Upvote 0
=IF(AND(J6 > F10, F10 < G10),I10,"") gives me a blank and should be a 2
 
Upvote 0
What are the values in J6, F10 & G10?
 
Upvote 0
=IF(AND(J6 > F10, F10 < G10),I10,"") gives me a blank and should be a 2
Please tell us the values in cell J6, F10, G10 and I10 in your example.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,375
Members
448,955
Latest member
BatCoder

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