You need to sign in to do that
Don't have an account?
GMASJ
Need help in formula
Hi,
I need to get this logical formual in salesforce formula.
Below is the logical formula.
(365 – ( MIN(365,MAX(0,LSD-FYSD)) + MIN(365,MAX (0,FYED-LED)))*100)/365
Here
LSD , FYSD, FYED LED are date fields.
Please suggest me how to put this inside a salesforce formula field.
Thanks
Sudhir
I need to get this logical formual in salesforce formula.
Below is the logical formula.
(365 – ( MIN(365,MAX(0,LSD-FYSD)) + MIN(365,MAX (0,FYED-LED)))*100)/365
Here
LSD , FYSD, FYED LED are date fields.
Please suggest me how to put this inside a salesforce formula field.
Thanks
Sudhir
Are you getting any error while using this formula?
Regards,
Anutej
(365 – ( MIN(365,MAX(0,LSD-FYSD)) + MIN(365,MAX (0,FYED-LED)))*100)/365
In above formula
First half conidtion MIN(365,MAX(0,LSD-FYSD))
IF LSD - FYSD < 0 THEN RETURN 0 ELSE RETURN VALUE ( LSD - FYSD ) WHICH IS MAX
MIN ( 365, ABOVE VALUE)
Please let me know if you dont get what I am explaining. I tried with IF condition but getting bollean error need hep on this condition.
Thanks
GMASJ