+ Reply to Thread
Results 1 to 3 of 3

Insert formula into a cell doesn't work :S

  1. #1
    Registered User
    Join Date
    07-14-2006
    Location
    Netherlands
    MS-Off Ver
    2000, 2003, and 2007
    Posts
    32

    Insert formula into a cell doesn't work :S

    If got this piece of code:

    For x = 5 To 10
    Range("D" & x).Formula = "=COUNTIF(PEN!$G:$G;$B" & x & " & \"CO\")"
    Next x

    Should result in:
    =COUNTIF(PEN!$G:$G;$B5 & "CO") in cell D5
    ...
    =COUNTIF(PEN!$G:$G;$B10 & "CO") in cell D10

    But it doesn't do the trick... someone who knows how to make it work?! Thanks in advance!!

    Steven
    Last edited by s80NL; 08-17-2006 at 11:43 AM.
    Life's a canvas, you fill the picture!

  2. #2
    Franz Verga
    Guest

    Re: Insert formula into a cell doesn't work :S

    "s80NL" <[email protected]> ha scritto nel
    messaggio news:[email protected]...
    >
    > If got this piece of code:
    >
    > For x = 5 To 10
    > Range("D" & x).Formula = "=COUNTIF(PEN!$G:$G;$B" & x & " &
    > \"CO\")"
    > Next x
    >
    > Should result in:
    > =COUNTIF(PEN!$G:$G;$B5 & "CO") in cell D5
    > ..
    > =COUNTIF(PEN!$G:$G;$B10 & "CO") in cell D10
    >
    > But it doesn't do the trick... someone who knows how to make it work?!
    > Thanks in advance!!
    >
    > Steven
    >


    Hi Steven,

    try without the slash, so you will have:

    Range("D" & x).Formula = "=COUNTIF(PEN!$G:$G;$B" & x & ""CO")"



    --
    Hope I helped you.

    Thanks in advance for your feedback.

    Ciao

    Franz Verga from Italy



  3. #3
    Tom Ogilvy
    Guest

    RE: Insert formula into a cell doesn't work :S

    Sub a()
    For x = 5 To 10
    Range("D" & x).Formula = _
    "=COUNTIF(PEN!$G:$G,$B" & x & "&""CO"")"
    Next x

    End Sub

    Also, note that I use a comma instead of a semicolon. When you use Formula,
    you should enter the formula using US English conventions.

    --
    Regards,
    Tom Ogilvy


    "s80NL" wrote:

    >
    > If got this piece of code:
    >
    > For x = 5 To 10
    > Range("D" & x).Formula = "=COUNTIF(PEN!$G:$G;$B" & x & " &
    > \"CO\")"
    > Next x
    >
    > Should result in:
    > =COUNTIF(PEN!$G:$G;$B5 & "CO") in cell D5
    > ...
    > =COUNTIF(PEN!$G:$G;$B10 & "CO") in cell D10
    >
    > But it doesn't do the trick... someone who knows how to make it work?!
    > Thanks in advance!!
    >
    > Steven
    >
    >
    > --
    > s80NL
    >
    >
    > ------------------------------------------------------------------------
    > s80NL's Profile: http://www.excelforum.com/member.php...o&userid=36374
    > View this thread: http://www.excelforum.com/showthread...hreadid=572699
    >
    >


+ 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