Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Trying to use the SWITCH function to populate a new column. Seems to be ignoring the first statement for the Landing and New Ground Bothell lines. All Landing are coming out as 15 and New Ground Bothell as 9. New Ground Avondale is okay. Can someone help me format this correctly? Thanks!
Solved! Go to Solution.
Hi,
Most likely because you haven't made your dates explicit. As such, an expression such as
<= 03/17/2020
will be evaluated as 'less than the continued fraction 3 divided by 17 divided by 2020', i.e. <=0.000087361677344...
Try replacing with DATEVALUE, e.g.
DATEVALUE("03/17/2020")
Regards
Hi,
Most likely because you haven't made your dates explicit. As such, an expression such as
<= 03/17/2020
will be evaluated as 'less than the continued fraction 3 divided by 17 divided by 2020', i.e. <=0.000087361677344...
Try replacing with DATEVALUE, e.g.
DATEVALUE("03/17/2020")
Regards
Thanks. Still learning!!! Works perfect.
You're welcome!