Auto numbering using preceding-sibling - InfoPath Dev Sign in | Join | Help in Newbie Questions InfoPath (Entire Site) InfoPath Dev InfoPath Dev is dedicated to bringing you the information and tools you need to be successful in your Microsoft Office InfoPath development projects. Home Blogs Forums Photos Downloads InfoPath Dev » InfoPath » Newbie Questions » Auto numbering using preceding-sibling Use our Google Custom Search for best site search results. Auto numbering using preceding-sibling Last post 03-10-2013 11:27 AM by Patrick Halstead. 1 replies. Page 1 of 1 (2 items) Sort Posts: Oldest to newest Newest to oldest Previous Next 03-04-2013 12:05 PM zi007ad Joined on 02-24-2013 Posts 13 Auto numbering using preceding-sibling Reply Contact hey, i was wondering is it possible to auto number using (a,b,c ...etc) instead of (1,2,3 .. etc) maybe using "preceding-sibling" or similar codes ? 03-10-2013 11:27 AM In reply to Patrick Halstead Joined on 08-07-2006 Posts 5,110 Re: Auto numbering using preceding-sibling Mark as Not AnswerMark as Answer... Reply Contact Yes! Here's an xpath you can use: count(../preceding-sibling::my:group)+1Replace my:group with the repeating group node above your field. Best practice is not to make the field repeating, but rather the parent group.Good luck! Patrick HalsteadProject Manager at Qdabra Page 1 of 1 (2 items) Copyright © 2003-2019 Qdabra Software. All rights reserved.View our Terms of Use.
Use our Google Custom Search for best site search results.
Yes!
Here's an xpath you can use: count(../preceding-sibling::my:group)+1
Replace my:group with the repeating group node above your field. Best practice is not to make the field repeating, but rather the parent group.
Good luck!