Results 1 to 5 of 5

Flying Days

Threaded View

shg Flying Days 07-20-2014, 01:37 PM
roxieexcel Re: Flying Days 07-20-2014, 02:41 PM
shg Re: Flying Days 07-20-2014, 02:58 PM
martindwilson Re: Flying Days 07-20-2014, 05:38 PM
martindwilson Re: Flying Days 07-20-2014, 06:16 PM
  1. #1
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Flying Days

    A
    B
    C
    1
    Inp
    Out
    2
    123 123---- B2: =FlyingDays(A2)
    3
    345 --345--
    4
    x7 123456-
    5
    x15 -234-67
    6
    1234567 1234567
    7
    x 1234567


    Function FlyingDays(sInp As String) As String
        Dim i           As Long
    
        If sInp Like Replace(Space(Len(sInp)), " ", "[1-7]") Then
            FlyingDays = "-------"
            For i = 1 To Len(sInp)
                Mid(FlyingDays, Mid(sInp, i, 1)) = Mid(sInp, i, 1)
            Next i
    
        ElseIf UCase(sInp) Like "X" & Replace(Space(Len(sInp) - 1), " ", "[1-7]") Then
            FlyingDays = "1234567"
            For i = 2 To Len(sInp)
                Mid(FlyingDays, Mid(sInp, i, 1)) = "-"
            Next i
    
        Else
            FlyingDays = "Invalid input!"
        End If
    End Function
    Last edited by shg; 07-20-2014 at 03:18 PM.
    Entia non sunt multiplicanda sine necessitate

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. average flying aircraft monthly
    By guitarist00 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 06-10-2014, 08:48 AM
  2. Convert days -> Years, Months, Days, Hours, Minutes, Seconds
    By brharrii in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 09-06-2012, 06:44 PM
  3. [SOLVED] Calculating Flying hours allowing for GMT or BST
    By Joco in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-24-2006, 10:05 AM
  4. Flying Bricks Chart
    By Irada Shamilova in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 09-01-2005, 06:05 PM
  5. Need to calculate flying hours
    By nchat76 in forum Excel - New Users/Basics
    Replies: 5
    Last Post: 05-16-2005, 03:24 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1