Hi, can we have a number\integer function please. Right now I only have numbers less than 10, so using the substring function to just get the first 1 number is working.
Thanks
Thanks
$tempMonth = datetime\month(closeDate); $qtr = ($tempMonth - 1)/3; $strQtr = string\substring($qtr, 0, 1); $numQtr = $strQtr + 1; closeQuarter = string\concatenate(datetime\year(closeDate),"Q",$numQtr);
Comment