+ Reply to Thread
Results 1 to 5 of 5

Countif Value problem

Hybrid View

  1. #1
    Registered User
    Join Date
    09-02-2008
    Location
    Richmond
    Posts
    71

    Countif Value problem

    I have a code that opens another workbook and looks at some cells and then returns the values. The problem is F20 in the opening document has a countif and gives the value but when it comes back into the main file it has the formula and not the value

    Private Sub DownloadDR_Click()
     Dim wb As Workbook
      Dim s As String
      Dim dName As String
      dName = Format(CDate(Range("c3").Value), "mmddyy")
    
    TextBox5.Text = dName
      
       s = Worksheets(1).TextBox5.Value
        
      Application.ScreenUpdating = False ' turn off the screen updating
      'Set wb = Workbooks.Open("m:\cir at a glance\dsi reports\" & TextBox3.Value & ".xls", True, True)
      Set wb = Workbooks.Open("M:\Cir at a Glance\Down Route Report\Brandermill  Down Route Report " & s & ".xls", True, True)
      ' open the source workbook, read only
      With ThisWorkbook.Worksheets(1)
      ' read data from the source workbook
    '.Range("c42").Formu1a = wb.Worksheets(s).Range("l2").Formula & "+" wb.Worksheets(s).Range("N2").Formula
    '.Range("d42").Formula = wb.Worksheets(s).Range("A20").Formula
        .Range("c54").Formula = wb.Worksheets(s).Range("f20").Formula
        .Range("d54").Formula = wb.Worksheets(s).Range("c4").Formula
      End With
      wb.Close False ' close the source workbook without saving any changes
      Set wb = Nothing ' free memory
      Application.ScreenUpdating = True ' turn on the screen updating
    End Sub

    =COUNTIF(myChecks, "a")
    This is used by check boxes and then adds up all the check in F20
    Last edited by VBA Noob; 11-09-2008 at 03:45 PM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531
    Are you saying you want to copy the value and not the formula ?

    .Range("c54").Value = wb.Worksheets(s).Range("f20").Value

  3. #3
    Registered User
    Join Date
    09-02-2008
    Location
    Richmond
    Posts
    71

    Yes

    Yes just the value

  4. #4
    Registered User
    Join Date
    01-29-2008
    Posts
    21

    Solved

    Solved Thank you,

    I tried to do the edit and Go Adv and solved but couldn't find it

  5. #5
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    I assume you couldn't mark it as solved as you're signed in as a different user.

    e.g James580 started the thread and you answered as jhp580.

    I've marked it solved for you but if you're not one in the same person then James580 let me know.

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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