math.mod()
-
[apex] 두 날짜 간의 차이 계산 방법 ( How to calculate the difference between two dates)Apex 2024. 8. 17. 21:49
1. 예시 코드 확인Date ExcutionStartDate = Date.newInstance(2024, 8, 1);Date ExcutionEndDate = Date.newInstance(2024, 8, 17);if (ExcutionStartDate != null && ExcutionEndDate != null) { // 두 날짜 사이의 일 수 차이 계산 Integer daysDifference = ExcutionStartDate.daysBetween(ExcutionEndDate) + 1; // 주 단위와 일 단위 계산 Integer ExcutionWeek = Math.floor(daysDifference / 7); Integer ExcutionDay = Math.mod..