+ Reply to Thread
Results 1 to 10 of 10

Need to loop through a set of functions and access the changing variable in the functions

Hybrid View

  1. #1
    Registered User
    Join Date
    06-13-2017
    Location
    united states
    MS-Off Ver
    2016
    Posts
    11

    Need to loop through a set of functions and access the changing variable in the functions

    Hey, I've been having an issue. I need to set up a Newton Raphson method for approximating an answer to an equation, line after line for many conditions. The purpose of setting up this function has been that I am solving a complex math problem that has weird answers and I need to arrive at a real solution, and I need to do so more quickly than the solver or goalseek functions have been able to do for me. Which works! The newton raphson method is WAY faster for one line in my case, so that's not the issue. Long story short, I have one line/row of my spreadsheet completely solved and it solves the equation I need lightning fast. To do so, I have 2 functions set up as the equation I have simplified my problem to and a function for its derivative to perform a taylor-series like iterative solution within a 3rd function, which I call out below those. A sub calls out the third function, which calls the first and second, and the line becomes solved and outputs a cell where my answer should be. My original plan was to solve everything for one line, and use a simple for loop (which would be easy in any other program *ahem Matlab) to loop through that function for 1 to 2 to 3 etc rows down, and have the functions grab cells from the line that the for loop is running on. Setting up a for loop inside of each cell obviously won't work, and the variable I loop through, "j", can't be referenced within the other functions if I call it out within the sub, where it needs to be. I want to call out, for example, b = Cells(j, "CJ") in the function that the sub calls, and have the sub be a big for loop that changes j... I HAVE GOT AROUND my problem by making a for loop that inside my sub fills up a column in the spreadsheet with 1's, and in my functions I set j equal to a command that counts the number of cells filled in the column range, but since it has to output cells and count rows it takes too long for the size of data I need it for (like 50 lines.) Is there ANY way to reference a variable, WITHIN A CHANGING FOR LOOP, inside of a function that you call out? will global variables work? (I've tried global variables but can't set one up that changes where I need it to.) PLEASE FOR THE LOVE OF GOD help me, I'm going insane trying to find an answer, all I've found on threads is basic for loop help and referencing things within subs, but nothing that quite helps. Any help would be appreciated, let me know if I'm supposed to/it would be helpful to paste my code somewhere. Thanks in advance!

  2. #2
    Forum Contributor
    Join Date
    08-29-2012
    Location
    Slough
    MS-Off Ver
    Excel 2007
    Posts
    469

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Just as a suggestion, it may be worth breaking this down a little bit, paragraphs or something similar?

    I think it could increase your chance of getting an answer on whatever it is.

    Also, from the first few lines it sounds like it may be a vba question? In which case you want it in the VBA/Macros forum and not in the formula forum.

  3. #3
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,779

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Very wordy but meaningless without any workbook.

    Seems like a VBA issue so post VBA/Macro thread and supply a workbook with code and expected results..

    Attach a sample workbook (not image).

    Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate.

    Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.

  4. #4
    Registered User
    Join Date
    06-13-2017
    Location
    united states
    MS-Off Ver
    2016
    Posts
    11

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Okay! Thanks for the advice guys, Ill clean up my post and move it to the VBA page. (And provide my code.) Should I delete my post here? Also, how do I desensitize my data? You mean just provide arbitrary numbers for things in the code?

  5. #5
    Forum Contributor
    Join Date
    08-29-2012
    Location
    Slough
    MS-Off Ver
    Excel 2007
    Posts
    469

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Yes, desensitize the workbook. Fill any sensitive parts with similar but meaningless data. e.g. any names can be changed to Joe Bloggs or John Smith etc. Not every row is needed, just enough of a snapshot for the code to show what is needed.

    Have 2 sheets ideally, 1 working sheet and the other showing exactly where all data should be and the values after the code has run.

    Yes, you'll be fine to delete this post.

    Thanks.

  6. #6
    Registered User
    Join Date
    06-13-2017
    Location
    united states
    MS-Off Ver
    2016
    Posts
    11

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Oh didn't see someone posted. I'll look into that, thanks!!!

  7. #7
    Registered User
    Join Date
    06-13-2017
    Location
    united states
    MS-Off Ver
    2016
    Posts
    11

    Re: Need to loop through a set of functions and access the changing variable in the functi

    I've also posted my issue and a workbook with it on another thread with the same title, in the vba section.

  8. #8
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,387

    Re: Need to loop through a set of functions and access the changing variable in the functi

    I will mention this tutorial I put together that doesn't use any VBA to use the NR algorithm: https://www.excelforum.com/tips-and-...ind-roots.html
    If I understand what you are trying to do, arrange the calculation for a single incident of the NR algorithm in a single row/column (pay attention to relative and absolute references). Then, to repeat the calculation for other incidents, simply copy that row/column down/across.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  9. #9
    Registered User
    Join Date
    06-13-2017
    Location
    united states
    MS-Off Ver
    2016
    Posts
    11

    Re: Need to loop through a set of functions and access the changing variable in the functi

    Stupid question: How do I delete a post? thanks!

  10. #10
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,387

    Re: Need to loop through a set of functions and access the changing variable in the functi

    I think it will be useful for others to include the link to the other thread: https://www.excelforum.com/excel-pro...functions.html

    FYI, I don't think this forum will allow users to delete a post or a thread. I think the best thing to do is to do like you have done here and conclude with a post that shows that you have abandoned this approach and that you are continuing in another thread with a link to that thread.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] How to use if and loop functions
    By gogz2005 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 03-15-2014, 08:30 AM
  2. Running Excel Functions from Access
    By shanejadams in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-03-2012, 06:18 AM
  3. Access add in functions to VBA
    By OCONUS in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 07-09-2012, 10:12 AM
  4. How to use my Access VBA functions in Excel
    By new2VBAexcel in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-22-2010, 10:28 AM
  5. Use for loop with functions
    By Rodas in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-03-2009, 02:29 PM
  6. Trying to call access functions in excel
    By DKY in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-19-2008, 03:38 PM
  7. Can a variable be used across different Sub Functions?
    By nbaj2k in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-29-2006, 01:01 PM
  8. Not able to access certain Excel functions
    By LauraJ3 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-01-2006, 11:40 PM

Tags for this Thread

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