Related:
- Help! If statements with date
- How many if statements can you nest - Guide
- If then statements in excel - Guide
- Onlyfans statements - Guide
- Vba case statement with string - Guide
- Excel if statement with text - Guide
1 response
I don't understand.
You are using an A for being absence a T for being tardy and nothing for being present, correct?
They receive points but you want to distract them?
What does the percentage stand for?
What/who is TA?
What does P stand for?
I don't know how a normal grade book looks like?
Can you give an example how your sheet looks like?
Best regards,
Trowa
You are using an A for being absence a T for being tardy and nothing for being present, correct?
They receive points but you want to distract them?
What does the percentage stand for?
What/who is TA?
What does P stand for?
I don't know how a normal grade book looks like?
Can you give an example how your sheet looks like?
Best regards,
Trowa
Oct 2, 2009 at 10:10 PM
Thanks for your help.
Oct 5, 2009 at 08:45 AM
Otherwise you could fill in N/A for empty spaces, so the IF function won't find empty cells.
If you want to use dates put the date of today in a cell and compare it with the date of the class using another IF function.
Let's put the date of today in A1 and the date of the class in A2.
=IF(M5="A",0,IF(M5="T",2.5,IF(M5="",IF(A2>=A1,5,""),"")))
So if M5 contains A, result is 0.
If not check if M5 contains T, if so result is 2.5.
If not check if M5 contains "", if so check if the date of the class is greater or equal to the current date.
If that is true as well result is 5, if not result will be "", if M5 doesn't contain A,T or "" result will be "".
Note that there is a function to get today's date.
Also note that using that function als include time.
Hopefully this will help you out.
Best regards,
Trowa