Forum Discussion
BullseyeBullsey
8 years agoQrew Cadet
I think this will work in the colorization formula:
If([Arrival Date]=��,Case([ETA],1=ToDays([ETA]-Today()),�#ffff00�,[ETA]=Today(),�#00ff00�,ToDays([ETA]-Today())<0,�#ff0000�),��)
If([Arrival Date]=��,Case([ETA],1=ToDays([ETA]-Today()),�#ffff00�,[ETA]=Today(),�#00ff00�,ToDays([ETA]-Today())<0,�#ff0000�),��)
- BullseyeBullsey8 years agoQrew CadetAlso, here is a color picker you can try if you don't like the shades I picked:
https://www.w3schools.com/colors/colors_picker.asp - KellyBianchi8 years agoQrew Assistant CaptainHere is the error I get:
Formula syntax error
Expected a valid expression after the "="
If([Arrival Date]= ��,Case([ETA],1=ToDays([ETA]-Today()),�#ffff00�,[ETA]=Today(),�#00ff00�,ToDays([ETA]-Today())<0,�#ff0000�),��) - BullseyeBullsey8 years agoQrew CadetTry .....[Arrival Date]=ToDate(""),.....
- KellyBianchi8 years agoQrew Assistant CaptainThis is what I got:
Formula syntax error
Please check the syntax of your entire formula. Possible culprits are a mismatched set of parentheses, missing quotes, or an extra bracket.
If([Arrival Date]=ToDate(""),Case([ETA],1=ToDays([ETA]-Today()), �#ffff00�,[ETA]=Today(),�#00ff00�,ToDays([ETA]-Today())<0,�#ff0000�),��) - QuickBaseCoachD8 years agoQrew Captaintry this
If(
not Isnull([Arrival Date]), "",
ToDays([ETA]-Today()) = 1, "#ffff00",
[ETA]=Today(),"#00ff00",
ToDays([ETA]-Today())<0,"#ff0000")
be sure you are using the straight double quotes and not the "66" "99" quotes which you see in Word. - KellyBianchi8 years agoQrew Assistant CaptainI did change the quotes, because I thought that was it, but this formula worked. Thank you!!
- KellyBianchi8 years agoQrew Assistant CaptainActually, had to change [ETA]=Today() to ToDays([ETA]-Today())>0, but I have what I need. Thanks again!
- QuickBaseCoachD8 years agoQrew CaptainOK great, I did not have the time to check your logic, only your syntax.