Results 1 to 12 of 12

Thread: record # if data in other columns in same row

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    you can also create a function in a Module:

    Public Function ColumnData(ByVal rw As Long) As Long
        ColumnData = Cells(rw, Columns.Count).End(xlToLeft).Column
    End Function
    then use it in a Formula (see formula in Column B of Record sheet)
    Attached Files Attached Files

Posting Permissions

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