How is the finish date calculated If I want to renew a bigger quantity of Standard/Business subscriptions and the actual subscriptions are not expired?
Example:
You have 5 licenses that expire on 8/21/2018
You renew 7 licenses on 7/21/2018
daysToAdd = (daysRemained + daysPurchased)/totalQuantity
newExpirationDate = actualDate + daysToAdd
daysRemained = (oldExpirationDate – actualDate) * oldQuantity
daysRemained = (8/21/2018 – 7/21/2018) * 5 = 155 days
daysPurchased = newQuantityRenew* 365 = 7 * 365 = 2555 days
totalQuantity = newQuantityRenew = 7
daysToAdd = (155+ 2555) / 7 = 387 days
newExpirationDate = 8/21/2018 + 387 days = 9/12/2019