is this formula in a proper format? nvl({custentit...
# suiteql
t
is this formula in a proper format? nvl({custentity_cdi_ar_last_task_date},'12/31/1999') i get the following error message Your formula has an error in it. It could resolve to the wrong datatype, use an unknown function, or have a syntax error. Please go back, correct the formula, and re-submit. Search: Customer Search Formula: nvl({custentity_cdi_ar_last_task_date},'12/31/1999')
t
@Tash I gave this a try and it worked. NVL({dateclosed},TO_DATE('12/31/1999','MM/DD/YYYY'))
that was in a formula(date) where the formula is not empty
t
Thank you!
Hey Van
I have a similar question to yesterday and was hoping if you can assist
t
go for it
t
really appreciate the speedy answere
CASE WHEN TO_DATE(TO_CHAR({trandate}, 'YYYY'), 'YYYY') LIKE '%2021%' THEN {totalamount} ELSE 0 END
instead of year im trying to apply this for date range of 1/1/22 - 9/1/22
sorry 1/1/22*
t
what are you getting back? an error?
t
no but im trying to create a formula for each month
t
one sec, I may have something that may help....but it uses accountperiods to put sales into monthly buckets
t
thank you
this is what i got CASE WHEN TO_DATE(TO_CHAR({trandate}, 'dd-mm-yyyy'), 'dd-mm-yyyy') LIKE '%01/01/2022%' THEN {totalamount} ELSE 0 END
t
I'll DM you