Consulting

Results 1 to 2 of 2

Thread: Solved: Problem writing formula

  1. #1

    Solved: Problem writing formula

    I am trying to have a cell's formula be: the number on the left, times a number on another sheet, whose location depends on x

    This is what I have, it doesn't work though



    [vba]

    Do while x < 10
    .Offset(4, 4 + x).Formula = "=R[-1]C[-1] * Data Analysis!R3549!C"&(9 + x)
    x = x + 1
    Loop
    [/vba]

  2. #2
    Administrator
    VP-Knowledge Base
    VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    .Offset(4, 4 + x).FormulaR1C1 = "=R[-1]C[-1] * Data Analysis!R3549C" & (9 + x)
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

Posting Permissions

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