If date of request is less that today + 2 future days, I need my row to be red. The formula I am using is not working. Please advise.thx
-
440 Points
Posted 11 months ago
-
4,430 Points
If([Date of Request]<[TodayPlus2],"#CC0000","")
in another formula date field called [TodayPlus2], do the following:
Today()+Days(2)
-
31,638 Points
If the date is 2 days or more in the future, it will be the HEX color you pick.
If([Date of Request]>=(Today()+Days(2)), "#HEX", "")
If([Date of Request]>=(Today()+Days(2)), "#HEX", "")
-
440 Points
Neither of these are working the way I have intended. I probably didn't explain well enough and have come up with something more...
If my [date of request] is more than 2-5 days prior to today, "yellow",
If my [date of request] is more than 6-10 days prior to today, "blue",
If my [date of request] is more than 11 or more days prior to today, "red"
Thank you for reviewing this again.
If my [date of request] is more than 2-5 days prior to today, "yellow",
If my [date of request] is more than 6-10 days prior to today, "blue",
If my [date of request] is more than 11 or more days prior to today, "red"
Thank you for reviewing this again.
-
31,638 Points
If(
[Date of Request]>(Today()+Days(1)) AND [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) AND [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red",
"")
[Date of Request]>(Today()+Days(1)) AND [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) AND [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red",
"")
-
440 Points
not working. I get an "expecting ," alert. Nothing gets colorized. We will keep trying? thx
QuickBaseCoach App Dev./Training, Champion
-
59,576 Points
-
440 Points
If(
[Date of Request]>(Today()+Days(1)) AND [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) AND [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red",
"")
Line 2 has alert symbol - the word "AND" is highlighted in yellow and the alert message reads:
column 36 > Expecting ,
Thx
[Date of Request]>(Today()+Days(1)) AND [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) AND [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red",
"")
Line 2 has alert symbol - the word "AND" is highlighted in yellow and the alert message reads:
column 36 > Expecting ,
Thx
-
5,880 Points
Hi Lynn,
I have just checked this formula and found the same error which you have mentioned. Try to use in a small case - and not AND. it will work.
I have just checked this formula and found the same error which you have mentioned. Try to use in a small case - and not AND. it will work.
-
5,880 Points
In fact, if you ignore that error and save it then, Quick Base will change it automatically from AND to and.
If(
[Date of Request]>(Today()+Days(1)) and [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) and [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red", "")
I don't know why it is expecting , after the AND. I will report it out separately to the QB Support team about it.
Thanks,
Gaurav
If(
[Date of Request]>(Today()+Days(1)) and [Date of Request]<(Today()+Days(6)), "yellow",
[Date of Request]>(Today()+Days(5)) and [Date of Request]<(Today()+Days(11)), "blue",
[Date of Request]>(Today()+Days(10)), "red", "")
I don't know why it is expecting , after the AND. I will report it out separately to the QB Support team about it.
Thanks,
Gaurav
(Edited)
-
440 Points
I copied and pasted the formula, however none of the rows are colored.
-
440 Points
Let's try a different approach. I have calculated the days "overdue" (duration field). Need a formula for:
2-5 days overdue, blue
6-10 days overdue, yellow
11 or more days overdue, red
2-5 days overdue, blue
6-10 days overdue, yellow
11 or more days overdue, red
-
5,880 Points
> I copied and pasted the formula, however none of the rows are colored.
May be your report doesn't have any matching criteria as per condition. Can you please check that. or
try out this formula.
If(
[Date of Request]>(Today()+Days(2)) and [Date of Request]<(Today()+Days(5)), "yellow",
[Date of Request]>(Today()+Days(6)) and [Date of Request]<(Today()+Days(10)), "blue", [Date of Request]>(Today()+Days(11)), "red", "")
Do let me know if this formula works for you.
May be your report doesn't have any matching criteria as per condition. Can you please check that. or
try out this formula.
If(
[Date of Request]>(Today()+Days(2)) and [Date of Request]<(Today()+Days(5)), "yellow",
[Date of Request]>(Today()+Days(6)) and [Date of Request]<(Today()+Days(10)), "blue", [Date of Request]>(Today()+Days(11)), "red", "")
Do let me know if this formula works for you.
Related Categories
-
Formulas & functions
- 2828 Conversations
- 65 Followers