Auto increment decimal value in Excel -
im trying figure out how auto increment decimal value in excel, , next sheet increase first number one.
example below:
(first sheet) 1.1 1.2 1.3 ... (second sheet) 2.1 2.2 2.3 ...
now if add new sheet numbering continue 3.1. possible in excel 2010?
i can't see way achieve without macro support. following might starting point; add thisworkbook
module in vba:
private sub workbook_newsheet(byval sh object) sh.cells(1, 1) = thisworkbook.worksheets.count + 0.1 end sub
the code called when new worksheet created, receiving new sheet parameter. top-left cell supplied value reflecting number of sheets in workbook, plus 0.1 in question. further cells may filled (say) for
loop required (it's not clear question how many cells should value or rule we'd know that).
Comments
Post a Comment