I have a sheet where I'm counting if a value in a cell is older than today.
This formular that I'm using looks like this:
=COUNTIFS(H:H;"Not Started";G:G;">F2")
It is clearly not working, and I get an error if I remove the quotation marks ("").
The first condition should be working with the H:H,"Not Started", but the second condition is not.
In the G:G area is a date where the value has a deadline before an action has to be made, and the F2 is the today function (=TODAY()).
How do I check if the value in G:G is older than F2?
Thank you :)
Rewrite you formula as below, may help
=COUNTIFS(H:H;"Not Started";G:G;">" & F2)
Related
Good Morning,
Can you help to develop a formula to do the below task please:
The formula will be in Cell J8, i need the formula to look into Cell I8, if the formula finds a date entered then it returns YES in Cell J8, if it finds the symbol - then it returns the - symbol and if it is blank then it returns nothing.
Im a complete novice when it comes to formulas and i know only basics, this is what me and my cohort came up with but it doesnt work as intended
=IF(ISBLANK(I8),"",IF(ISNUMBER(I8),"YES","-"))
If this can be developed further to complete the task required we would be greatful.
Thanks
Try:
=IF(ISBLANK(I8),"",IF(I8="-",I8, IF(ISERROR(DATE(YEAR(I8),MONTH(I8),DAY(I8))),"","Yes")))
There formula check if there is a date and if that date is valid. If there is anything else in there cell except -, Empty String or Valid Date you will get nothing for result.
=IF(ISBLANK(I8),"",IF(I8="-","-",IF(ISNUMBER(I8),"Yes","None")))
isnumber is not the ultimate solution for detecting date. use vba
Frustration finally boiled over and had to post here.
I have a Google Sheet where I want a sheet (LOG) to have a formula that will search for a name on a different sheet (DAY 1), and if the name has a value in the cell adjacent to it, that the formula on DAILY return that adjacent cell value.
Right now, I am using an IFERROR to lead the equation. This will return a value of "0" for when a name does not occur (since different names will occur on different days).
Then I attempt a VLOOKUP, and I think I'm putting the criteria in correctly, but it doesn't give me the answer I want. That is in the document, I want cell B4 on page LOG to reflect that the name Smith, John is found on the page DAY 1, and that there is a value on cell C4.
Can anyone assist with this?
https://docs.google.com/spreadsheets/d/10tS6gqtEpp55OJpYa1jSMKmbm8qU5ZzRu0rqFWHegi0/edit?usp=sharing
You have errors in formula
=IFERROR(VLOOKUP(A4,'Day 1'!A4:A13, 3,FALSE, 0))
You specify parameter 3 - colindex=3 while parameter 2 - range consists of one column
Incorrect placement of brackets
Correct formula:
=IFERROR(VLOOKUP(A4,'Day 1'!A4:C13, 3,FALSE), 0)
In this case VLOOKUP isn't your best option, try using SUMIFS instead:
=SUMIFS('Day 1'!$C$4:$C$13,'Day 1'!$A$4:$A$13,A4)
This function fills your need.
I would also recommend having one tab for all your "raw" data for each day like this:
And using this formula instead, you can drag right and down now:
=SUMIFS('Day 1'!$D$4:$D,'Day 1'!$A$4:$A,B$2,'Day 1'!$B$4:$B,$A4)
Hope you find this more useful :)
-this is my first post
https://docs.google.com/spreadsheets/d/1LXgZfKvUt7lrp4E8tAqaYEmSmZwjEbDYcQD8j1jHReY/edit?usp=sharing
I have a column of dates (daily) and I want an IF statement that will check if the corresponding cell is the 17th of any month.
I'm happy with the syntax of if statements but am unsure how I should be using wildcards here. 'x'below can be any numerical value.
The cell in question looks like - 17/07/2019.
= IF( cell = 17/**/****,x,0)
Excel gets confused and tries to show me how to do maths without a formula.
If you already know that the date is not a text value you can use a simple formula like:
=IF(DAY(A1)=17,”x”,0)
The only issue is that your dates may be genuine Excel dates or text values. With data in A1, in another cell enter:
=IF(ISNUMBER(A1),IF(DAY(A1)=17,"X",0),IF(LEFT(A1,2)="17","X",0))
I have a tasks tracking sheet and want to count number of tasks received based on week number for a particular year. Thanks for the post COUNTIF date occurs in same week number and year
But still i have problem that i have dates in a column where many of the cells are non-empty and filled with Hyphens "-". If i delete Hyphens, formula working fine. But i need to keep "-" in cells where date not entered.
Initially i tried 'Sumproduct' funtion, it shows #Value error because of Hyphen in cells. And i added the code --(Task_Status!$X$7:$X$250<>"-"). But still it showing same error. In my formula, where Q2 is weeknumber 1 to 58 in a rage of cells Q2 to BQ2, that i have to copy(drag) the formula from Q3 to BQ3. And $C$3 is cell having 4 digit Year (E.g. 2019). Please help...
A image here-->Received&Completed_CW
=SUMPRODUCT(--(ISOWEEKNUM(Task_Status!$X$7:$X$250)=Q2),--(YEAR(Task_Status!$X$7:$X$250)=$C$3),--(Task_Status!$X$7:$X$250<>"-"))
Perfect i found a temporary formula... Its working fine if non-hyphen "-" exist until end of cell range specified by INDIRECT function...
=SUMPRODUCT(--(ISOWEEKNUM(INDIRECT("Task_Status!$X$7:$X"&COUNTIFS(Task_Status!$X$7:$X$250,"<>-")+6,TRUE))=Q2),--(YEAR(INDIRECT("Task_Status!$X$7:$X"&COUNTIFS(Task_Status!$X$7:$X$250,"<>-")+6,TRUE))=$C$3))
Please give a better solution than this if anyone found... Because still Hyphen present between start cell X7 and end of cell range specified by INDIRECT function give no result... still need help...
Thank you for all who tried for a solution... and thanks to post Excel Define a range based on a cell value and Using the value in a cell as a cell reference in a formula?
I'm wanting to check for blank cells, and when the cell is not blank, output a formula. However, I am getting errors and I believe you're not allowed to use formulas within an IF function, are you guys able to help me out?
=IF(A1="","",=lastModified(A1))
If the cell is not empty, this formula will return the date the cell was last modified. I do not want the date updated if the cell is blank.
Thanks for the help.
If you want to call the formula, just remove the equals sign. It will call when the FALSE condition triggers in your IF statement.
=IF(A1="","",lastModified(A1))