quenestil Posted June 9, 2006 at 04:15 PM Report Share #32093 Posted June 9, 2006 at 04:15 PM é assim keria kriar umas fichas no excel k sempre k imprimia aparecia um numero sekuencial, por exemplo hoje imprimia 5...ficava no numero 5,mas se amanha kizesse imprimir mais..o numero de ficha já ia ser 6,7,8 etc. Algume sabe a formula? ? Link to comment Share on other sites More sharing options...
AriOps Posted June 10, 2006 at 06:17 PM Report Share #32299 Posted June 10, 2006 at 06:17 PM se calhar para o nº ser automático conforme a impressão...talvez tivesses de mexer no vb, mas não te sei dizer em concreto... Cumps Daniel Correia Link to comment Share on other sites More sharing options...
Narchotyck_Killer Posted July 7, 2006 at 11:17 AM Report Share #36781 Posted July 7, 2006 at 11:17 AM Viva! Podes fazer assim: Crias um botao, em kk local da folha. (ele nao vai ser impresso) e colocas-lhe este código: Private Sub CommandButton1_Click() Folha1.Cells(3, 3) = Int(Folha1.Cells(3, 3)) + 1 ;subsitui o 1º 3 pela linha da célula onde queres a contagem automática, e o 2º pela coluna CommandButton1.Visible = False Me.PrintOut CommandButton1.Visible = True End Sub Tentei usar o evento "BeforePrint" do workbook, mx n funcionou. Era mais pratico se desse dessa maneira. Mas assim tb funciona [ ] Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now