Consulting

Results 1 to 4 of 4

Thread: Solved: Run out of screen

  1. #1

    Solved: Run out of screen

            With Range("Call_Checker")
                .Formula = _
                "=IF(COUNTBLANK(INDEX(Coach_Staff_Number,ROW(A1)))+COUNTBLANK(INDEX(Agent_Pin,ROW(A1)))+COUNTBLANK(INDEX(Date,ROW(A1)))+COUNTBLANK(INDEX(Time,ROW(A1)))+COUNTBLANK(INDEX(TT,ROW(A1)))+COUNTBLANK(INDEX(Call_Type,ROW(A1)))+COUNTBLANK(INDEX(CIN,ROW(A1)))+COUNTBLANK(INDEX(Monitored_By,ROW(A1)))+COUNTBLANK(INDEX(Monitors_Initials,ROW(A1)))+COUNTBLANK(INDEX(Monitoring_Method,ROW(A1)))+COUNTBLANK(INDEX(Monitoring_Purpose,ROW(A1)))+COUNTBLANK(INDEX(Question_1,ROW(A1)))+COUNTBLANK(INDEX(Question_2,ROW(A1)))+COUNTBLANK(INDEX(Question_3,ROW(A1)))+COUNTBLANK(INDEX(Question_4,ROW(A1)))+COUNTBLANK(INDEX(Question_5,ROW(A1)))+COUNTBLANK(INDEX(Question_6,ROW(A1)))+COUNTBLANK(INDEX(Question_7,ROW(A1)))+COUNTBLANK(INDEX(Question_8,ROW(A1)))+COUNTBLANK(INDEX(Question_9,ROW(A1)))+COUNTBLANK(INDEX(Question_10,ROW(A1)))+COUNTBLANK(INDEX(Question_11,ROW(A1)))+COUNTBLANK(INDEX(Question_12,ROW(A1)))+COUNTBLANK(INDEX(Question_13,ROW(A1)))+COUNTBLANK(INDEX(Question_14,ROW(A1))),""Data Missing"",""Call Complete"")"
                '.Value = .Value
            End With
    this is my formula, I need to add in
    +COUNTBLANK(INDEX(Question_15,ROW(A1)))
    when I do this some of the formula jumps on to the next line adn messes up

  2. #2
    Ah the formula is too long ?

    Can this be shrunk ?

  3. #3
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Break the formula down into parts in separate cells, then test the sum of those cells.
    Last edited by Bob Phillips; 12-03-2008 at 05:07 AM.
    ____________________________________________
    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

  4. #4

    thanks

    for your advice worked a treat

Posting Permissions

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