Can't make it work?

agoodson1956

Board Regular
Joined
Sep 1, 2016
Messages
140
If H8 is less then D2 say "Not Ready", If H8 is between D2 and F2 say "All Most", If H8 is more than F2 say "Done"
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try: =IF(H8 < D2,"Not Ready",IF(AND(H8 > D2,H8 < F2),"AllMost",IF(H8 > F2,"Done")))
 
Last edited:
Upvote 0
Thanks it works on one sheet but not another?

I have formulas on the page that does not work.

D2 = =IF(F6<>"",INDEX(Data!$B:$Z,MATCH(F6,Data!$B:$B,0),21),"")

F2==IF(F6<>"",INDEX(Data!$B:$Z,MATCH(F6,Data!$B:$B,0),19),"")

H8==G8-F8

G8 & F8 are dates
 
Upvote 0
What values do the formulas return in cells D2, F2 and H8?
 
Upvote 0
D2 is how many days to germinate which changes depending on seeds

F2 is how many days until harvest microgreens from date planted

H8 is how many days between today's date and planting date
 
Upvote 0
Are the formulas returning numbers? Perhaps you could upload a copy of your file to a free site such as www.box.com. or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
 
Upvote 0
D and F2 aren't numerical.

D2 = IF(F6<>"",NUMBERVALUE(INDEX(Data!$B:$Z,MATCH(F6,Data!$B:$B,0),21)),"")
F2 =IF(F6<>"",NUMBERVALUE(INDEX(Data!$B:$Z,MATCH(F6,Data!$B:$B,0),19)),"")

It's also 'Almost', and L10 can be shortened to =IF(K10="None","",IF(K10="Mason Jar","Sprouts","Microgreen"))
 
Last edited:
Upvote 0
I had to do the following and then it worked!

[FONT=&quot]--Copy a blank cell[/FONT]
[FONT=&quot]--Keeping the copy select the range of cells with numeric values[/FONT]
[FONT=&quot]--Right click>PasteSpecial>[/FONT]
[FONT=&quot]--Select 'Add' and click OK.[/FONT]
 
Upvote 0

Forum statistics

Threads
1,213,491
Messages
6,113,963
Members
448,536
Latest member
CantExcel123

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