Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    Hi PVH, Yes, I've tried that, but it didn't change anything. Problem still continues. Returns error message: "Run-time error '450': Wrong number of arguments, or invalid property assignment." Thanks for engaging!
  2. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    Correction: In my opening sentence I should have asked: "Can you please advise how to use a WORD Selection Object to articulate a Word paragraph bullet from Excel. I'm told I'm presently trying to articulate via an EXCEL Selection Object from Excel, which is preventing my macro from running...
  3. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    Strongm, Other manipulation of the Word document from Excel is being successfully accomplished using lines as seen here: [START] With WordApp.Selection .TypeText Text:=[insert text, or Excel variable, etc] .Font.[formatting] .TypeParagraph .Style =...
  4. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    REFERENCE thread222-1723548 Hi All- Can you please advise how to use an Excel Selection Object to articulate a Word paragraph bullet from Excel. I'm told I'm trying to articulate via a Word Selection Object from Excel. Frankly, I don't know the difference. The particular piece of VBA that...
  5. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    Thanks much for your help, but bummer, still not having success. Got the Object Library issue switched on via the References menu okay. But, still, the code copied from Word's macro recorder doesn't run in Excel. Specifically, the code that appears to crash is: [START]...
  6. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    StrongM, Thanks very much for your help. So apparently I have not "set a reference to the Word object library." Can you possibly point me to a source that would describe what that is and how to do it? Thx!
  7. RandySS

    Excel Macro to Articulate & Reset MS Word List Bullets

    Hi Folks, Am using Excel VBA macro to create a MS Word document. Seeking efficient method to reset bullet lettering in Word list back to its first value, that is, reset to “a)” prior to printing a second, or additional list. I'm using template and styles in Word to establish desired...
  8. RandySS

    Excel cell value used in formula as row number of address in 2nd cell.

    Hi Folks, Am trying to avoid using VB to accomplish.. What would be the formula in cell #3? Value in cell #1 is "85" , for example. Cell #2 is located at Column 10, row 85. I want formula in cell #3 to return value of cell #2. Column number in formula in cell #3 would be fixed, I use...
  9. RandySS

    "Teams" web page as entry point to Access dbase of zip codes.

    Actually, I'm not trying to use Access as a web development tool. I just want it's data, querry results for example, to be displayable to a web site.
  10. RandySS

    "Teams" web page as entry point to Access dbase of zip codes.

    Thanks dhookom! I'll try my Access 2007 to see if it offers a solution.
  11. RandySS

    "Teams" web page as entry point to Access dbase of zip codes.

    Hi Folks, Am trying to create a rudimentary "teams" web page that allows visitor to determine if a team exists in a nearby zip code region. ("Does your zip code exist on our list of team's zip codes?") Am trying to figure out how a data entry field in a web page can serve as criteria for a...
  12. RandySS

    Quotes Appearing

    Later in the program when I do a comparison such as: If Tag = 1234 Then... it fails. However, if I go back to my original code and change it from Tag = Cells(VariableRow, 1).Value to Tag = 1234 the above comparison results in TRUE. Also, in the initial case, when hovering over the name...
  13. RandySS

    Quotes Appearing

    Hi Folks! I'm sure I'm overlooking an obviouse, but can't put my finger on why quote signs are appearing in the value stored at the below tag's address. I want stored at Tag is: 12345 I'm getting stored at Tag is: "12345" '***START*** Dim Tag Dim VariableRow VariableRow = 1 'Value entered...
  14. RandySS

    Using Boolean logic in VB, AND, OR

    Tony, Thanks very much! Your explanation helps a lot, and isn't overwhelming. Best regards, Randy
  15. RandySS

    Why do apostrophies appear in cell?

    Hi Folks, Below subroutine seems to create the desired formula okay. However, when formula is written to target cell apostrophies seem to have been inserted, making the formula non-functional. Desired formula is: =Sum(F1:F5) Inserted formula is: =Sum('F1':'F5') How do I build VB code such...
  16. RandySS

    Using Boolean logic in VB, AND, OR

    Much to my benefit, the wealth of informaiton continues....! But... you lost me when you said the BOLD parts of the expressionare ALWAYS TRUE. I don't see any bold. I do see a red 6 and a red 8. Are they inferred bold? Are they therefore true becuase they're not declared? As I say, you lost me.
  17. RandySS

    Using Boolean logic in VB, AND, OR

    Thank you!! Both methods you identify look interesting. I'll have to check out how "Select" works. Best regards!
  18. RandySS

    Using Boolean logic in VB, AND, OR

    Does Excel's VBA support the use of Boolean logic, such as OR, or AND? For example, If ...Column = 1 OR 3 OR 8 Then... Specifically, as used in If Then Else statement is most applicable. Thanks!

Part and Inventory Search

Back
Top