Consulting

Results 1 to 3 of 3

Thread: next number in column

  1. #1
    VBAX Regular
    Joined
    Sep 2008
    Location
    Sheffield
    Posts
    72
    Location

    Exclamation next number in column

    Hello

    How can i increment from the last digit in a column....? when theres rows blank..

    example in same column row 1 has 3 , what formula would make 4 in row 7 based on another cell ...?

    example

    IF(ISTEXT(G3),1,"") - gives all the rows with text in Column G a 1 , but how can i build on this?
    Last edited by ads_3131; 06-14-2012 at 05:35 AM.

  2. #2
    VBAX Tutor
    Joined
    Jun 2012
    Posts
    269
    Location
    I am really not sure what you are asking, but maybe this will help you...

    cell E2: =IF(ISNUMBER(E1),E1 + 1, "")

  3. #3
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Try


    =IF(ISTEXT($G3),MAX($E$1:$E2)+1,"")
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •