I am trying to get execel formulas to work with CDS calculated fields , is there any way to make thses formulas to work with CDS?
ODD, YEAR, INT, SUMIF, ROUNDUP, RIGHT, MONTH
Any help would be appreciated , I have complex formulas that need to solved , Please check one such example , Let me know if it possilbe with CDS
Here $AL6 is a date field
=IFERROR(
IF(
OR(
$BN6 = "",
$BN6 = 1900
),
"",
IF(
YEAR(
$AL6
) < 2018,
"Q1-18",
( "Q" &
INT(
ROUNDUP(
MONTH(
$AL6
) / 3,
0
)
) & "-" &
RIGHT(
YEAR(
$AL6
),
2
) )
)
),
""
)