Answered
Odd numbered list?
Does anyone know if there is a way to create a numbered list that uses only odd numbers? In other words, it would look like:
1.
3.
5.
7.
etc...
Does anyone know if there is a way to create a numbered list that uses only odd numbers? In other words, it would look like:
1.
3.
5.
7.
etc...
Hi @Serene_observer5E99 , You could try this script—select all of the numbered paragraphs before running:
var sp = app.activeDocument.selection[0].paragraphs.everyItem().getElements();
var c = 1;
for (var i = 0; i < sp.length; i++){
sp[i].numberingContinue = false
sp[i].numberingApplyRestartPolicy = true
sp[i].numberingStartAt = c
c = c + 2;
};
Before:

After:

Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.