I want to set cell value Google docs after begining of new month. My formula: =if(TODAY=2014-11-01, "YES", "NO") doesn't work. Can anybody help me?
OK, the problem has been solved. Google made modification without changing of documentation. =if(TODAY()=2014-11-1; "YES"; "NO"). It works.
Related
I am working in google sheets and I would like to ask you one thing.
I want to check if cell is blank and if it is it should return 0, if it is not it should calculate the formula, which I have used befere.
https://i.stack.imgur.com/Qh4dc.png (can not post image...)
But I am still getting this #ERROR! which says error when analyzing formula. I have tried it in Microsoft Excel and exact formula works...
Did somebody already solved this?
Thanks a lot! 👌
try:
=IF(ISBLANK(J15); 0; J15-J14)
I have a table used to track document versions and whether or not a user has read the most up to date version.
I want to track the number of up to date documents read per user and I'm really struggling with CountIF.
How do I count the number of times UserA matches Doc version?
What I have tried is =COUNTIF(A1:A12, "="&B1:B12) which gives multiple rows of results I don't really understand. I have also tried =COUNTIF(A1:A12, "="&B1) but of course that just matched to B1.
Thanks
Question answered in comments by JvdV
=SUMPRODUCT(--(A2:A13=B2:B13))
You can at least attach a sample file.
=SUMPRODUCT(--(A1:A13<>B1:B13))
=SUMPRODUCT((A2:A23-B2:B23=0)*(A2:A23<>""))
=COUNTIF(A1, "="& B1) then copy/paste it to all cells
I am trying get excel to show the word "Error" if the date in cell M2 is in the past AND if column L2 is blank however this is not working, any help is much appreciated!
It would be even better if I could get it to see if the date IS today or before today, rather than just before today
=IF(AND(M2<TODAY(),L2=""),"ERROR","OK")
Try This
=IF(AND(M2<=TODAY(),ISBLANK(L2)),"ERROR","OK")
I've replaced commas with semi-colons in Google Sheet and it works:
=IF(AND(M2<=TODAY();L2="");"ERROR";"OK")
Check your regional settings, as user #SJR pointed out.
I have the following formula:
=IFERROR((INDEX(TRACKER!$A$2:$A$500, SMALL(IF(AND($B$3<=TRACKER!$C$2:$C$500,$B$4>=TRACKER!$C$2:$C$500),ROW(TRACKER!$C$2:$C$500)-MIN(ROW(TRACKER!$C$2:$C$500))+1, ""), ROW($A1)))),"")
That pulls data depending on the beginning IF(AND( statement. I was trying to get it to pull dates that are between B3 and B4 (so, >=B3 but <=B4)
The problem is, it doesn't seem to like my AND statement and keeps pulling nothing (""). If I delete one of the statements in the AND and just pull >=B3 or <=B4, it works fine...so it's not a date formatting issue.
Would appreciate any way to incorporate date range into this array formula, thank you.
Perfect Scott, thank you very much as always for the swift and concise response. I replaced it with a "*" and it all worked out. Appreciate it.
Please refer the below screenshot:
Assume that today's date is 29-4-2018 (dd-mm-yyyy). There are two users (User 1 and User 2). Both of them have worked in various Workspaces (Workspace1, Workspace 2 and Workspace 3) on different dates.
I want to calculate the number of jobs a user has done on today's date in various workspaces and then display the count in cell C2 and C3 respectively so that the result is something like this:
Any Idea how to write a formula to achieve this result?
P.S. I know I have to try it first, but I a complete newbie to excel and don't know much except for very basic formula. For this one, I don't even know where to start.
EDIT:
Just in case if anyone wants to download this workbook
Use the following formula in C2 cell
=COUNTIFS($B$8:$B$26,B2,$D$8:$D$26,"29-04-2018")+COUNTIFS($E$8:$E$26,B2,$G$8:$G$26,"29-04-2018")+COUNTIFS($H$8:$H$26,B2,$J$8:$J$26,"29-04-2018")
If it is actually today then you can replace 29-04-2018 with Today() so, the formula will be
=COUNTIFS($B$8:$B$26,B2,$D$8:$D$26,TODAY())+COUNTIFS($E$8:$E$26,B2,$G$8:$G$26,TODAY())+COUNTIFS($H$8:$H$26,B2,$J$8:$J$26,TODAY())
Edited answer from Scott Craner comments
=COUNTIFS($B$8:$H$26,B2,$D$8:$J$26,TODAY())