active questions tagged vba - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T07:55:39Zhttp://stackoverflow.com/feeds/tag/vbahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1025818/cant-apply-3d-properties-to-autoshape0Can't apply 3d properties to autoshapea_m0d2009-06-22T07:03:34Z2009-12-07T07:33:35Z
<p>The workbook I am working on in Excel uses graphics with 3d properties which are set in VBA. I just changed an image in the workbook, and now Excel complains that it can't execute any of the following lines of code:</p>
<pre><code>Selection.ShapeRange.ThreeD.Depth = fsdoord
Selection.ShapeRange.ThreeD.ExtrusionColor.RGB = carcol
Selection.ShapeRange.ThreeD.PresetLightingDirection = msoLightingBottom
</code></pre>
<p>The error produced is</p>
<pre><code>Run-time error '70':
Permission denied
</code></pre>
<p>I can still apply all the other properties to this shape; it only errors when I try to execute the lines relating to the 3d properties.</p>
<p>Does anyone have any insight into why this might be happening?<br />
Thanks in advance...</p>
http://stackoverflow.com/questions/747299/run-time-error-9-subscript-out-of-range1run time error '9' Subscript out of rangeTamon Forbang2009-04-14T12:30:06Z2009-12-07T06:46:07Z
<p>hello,</p>
<p>i am trying to run a solver optimisation through vba 6 excel. but when the execution reaches the declaration of the objective function:</p>
<pre><code> Sheets(working).Range("B63").FormulaArray = _
"=MMULT(MMULT(decision,covarMatrix),TRANSPOSE(decision))"
</code></pre>
<p>it gives the following message </p>
<pre><code>"run time error '9' Subscript out of range"
</code></pre>
<p>how can i resolve this please?</p>
http://stackoverflow.com/questions/1858090/any-way-to-determine-when-excel-background-printing-has-finished0Any way to determine when Excel background printing has finished?Scott Leis2009-12-07T05:58:41Z2009-12-07T05:58:41Z
<p>I'm using COM in LotusScript (Lotus Notes) to make Excel print several sheets in one workbook to PDFCreator, then make PDFCreator combine then into one PDF.
The problem is that calling Excel's PrintOut method immediately followed by PDFCreator's cCombineAll method results in one or more sheets being omitted from the PDF. It seems like Excel's PrintOut method returns before printing is complete.</p>
<p>Putting a Sleep in my code works, but may not be reliable as the printing time varies, so...
<br>Is there any Excel property or method I can call to determine whether printing has finished?
<br>Alternately, is there a way make the PrintOut method block until printing is finished?
<br>I haven't been able to find an answer in Excel's VBA Help.</p>
http://stackoverflow.com/questions/199889/escaping-in-access-sql1Escaping ' in Access SQLinglesp2008-10-14T03:08:20Z2009-12-07T04:26:18Z
<p>I'm trying to do a domain lookup in vba with something like this:</p>
<pre><code>DLookup("island", "villages", "village = '" & txtVillage & "'")
</code></pre>
<p>This works fine until txtVillage is something like Dillon's Bay, when the apostrophe is taken to be a single quote, and I get a run-time error.</p>
<p>I've written a trivial function that escapes single quotes - it replaces "'" with "''". This seems to be something that comes up fairly often, but I can't find any reference to a built-in function that does the same. Have I missed something?</p>
http://stackoverflow.com/questions/1856769/need-a-concatenating-vba-code-to-prevent-memory-issue-workaround0Need a Concatenating VBA code to prevent memory issue workarounddoharr2009-12-06T22:04:48Z2009-12-07T03:23:20Z
<p>My set up:
Have 50,000 rows of data. ( My row count will increase in the future. So might as well say I have a full worksheet of 64000+ rows.)
All Data is TEXT, no formulas, etc. </p>
<p>Column A is open
Columns B thru AC contain the Data that needs to be concatenated
The Data in the rows once concatenated to Column A will contain 60,000 digits or 6kb in file size. After additional maniuplation each cell will become a file.</p>
<p>I have tried concatenating in Excel and I run into memory issues. The memory issue is when I Select and fill down the concatenating function into the worksheet. It crashes at the 8200 +/-row.
My system is 2gb of ram, windows xp professional and Excel 2003. Have 4GB of disk space </p>
<p>Hoping to find a VBA code that will conserve memory, and not crash like it does in excel. </p>
<p>Thank you</p>
http://stackoverflow.com/questions/1857404/excel-find-speed-vs-vba-binary-search1Excel Find Speed vs. VBA binary Search?ExcelCyclist2009-12-07T02:10:28Z2009-12-07T02:10:28Z
<p>How good/fast is Excel VBA's Find vs. binary search? My platform is Office 11|2003 and I'll be searching for strings against Column A on three sheets of values. Total number of rows ~140,000</p>
<p>If worth it which Library & functions should I reference to do the sorting and then the binary search? Binary searching strings/text reportedly has potential problems. </p>
<blockquote>
<p>... one thing
must be noted. Using binary search
formulas with sortedtextrequires
caution. <a href="http://www.mrexcel.com/forum/showthread.php?t=84002" rel="nofollow">Aladin A., Excel MVP</a></p>
</blockquote>
<p>Excel Find:</p>
<pre><code>Worksheets(1).Range("A:A").Find("PN-String-K9", LookIn:=xlValues, LookAt:=xlWhole)
</code></pre>
http://stackoverflow.com/questions/803294/how-to-transfer-large-file-from-ms-word-add-in-vba-to-web-server1How to Transfer Large File from MS Word Add-In (VBA) to Web Server?Ian Robinson2009-04-29T16:53:51Z2009-12-07T00:43:33Z
<h1>Overview</h1>
<p>I have a Microsoft Word Add-In, written in VBA (Visual Basic for Applications), that compresses a document and all of it's related contents (embedded media) into a zip archive. After creating the zip archive it then turns the file into a byte array and posts it to an ASMX web service. This mostly works.</p>
<h1>Issues</h1>
<p>The main issue I have is transferring large files to the web site. I can successfully upload a file that is around 40MB, but not one that is 140MB (timeout/general failure).</p>
<p>A secondary issue is that building the byte array in the VBScript Word Add-In can fail by running out of memory on the client machine if the zip archive is too large.</p>
<h1>Potential Solutions</h1>
<p>I am considering the following options and am looking for feedback on either option or any other suggestions.</p>
<h2>Option One</h2>
<p>Opening a file stream on the client (MS Word VBA) and reading one "chunk" at a time and transmitting to ASMX web service which assembles the "chunks" into a file on the server.</p>
<p>This has the benefit of not adding any additional dependencies or components to the application, I would only be modifying existing functionality. (Fewer dependencies is better as this solution should work in a variety of server environments and be relatively easy to set up.)</p>
<h3>Question:</h3>
<ul>
<li>Are there examples of doing this or any recommended techniques (either on the client in VBA or in the web service in C#/VB.NET)?</li>
</ul>
<h2>Option Two</h2>
<p>I understand WCF may provide a solution to the issue of transferring large files by "chunking" or streaming data. However, I am not very familiar with WCF, and am not sure what exactly it is capable of or if I can communicate with a WCF service from VBA. This has the downside of adding another dependency (.NET 3.0). But if using WCF is definitely a better solution I may not mind taking that dependency.</p>
<h3>Questions:</h3>
<ul>
<li>Does WCF reliably support large file transfers of this nature? If so, what does this involve? Any resources or examples? </li>
<li>Are you able to call a WCF service from VBA? Any examples?</li>
</ul>
http://stackoverflow.com/questions/1856735/vba-clean-use-of-many-constants0VBA Clean use of many ConstantsExcelCyclist2009-12-06T21:48:18Z2009-12-06T23:34:48Z
<p>My Excel VBA takes ~300 XLS files and grabs 8 cells to deposit into their own row. (Office11) I have several subs and functions that use location constants for the sourceData and destination locations. Grand Total I have 23 constant locations with Column numbers, cell locations.</p>
<p>Question: Any suggestions on how to clean this up for readability and keeping constants all in one location? I was trying to avoid public variables but not sure of a better method. How do you do Arrays containing constant values?</p>
<p>partial example,<br><code>Public pstrQLocations(1 To 8) As String <Br>
pstrQLocations(1) = "B7" <br>
pstrQLocations(2) = "B6"<br>
pstrQLocations(3) = "B5"<br>
pstrQLocations(4) = "B8"<br>
pstrQLocations(5) = "A3"<br>
pstrQLocations(6) = "C8" </code></p>
http://stackoverflow.com/questions/1852215/how-to-force-user-to-deal-with-the-security-warning-when-starting-access-20071How to force user to deal with the Security Warning when starting Access 2007?Johan2009-12-05T13:37:32Z2009-12-06T23:19:12Z
<p>Hi!</p>
<p>When a user start an Access 2007 database that have macros and vba, a security warning is shown. I want the user to deal with this warning, so if the the content is't enabled, the user should not be able to use the database.</p>
<p>Now I use a macro named <code>AutoExec</code> (opens a form that works like a menu), and that macro is run before the user deal with the security warning. But I want to check if the content is enabled and if not I will show a form that inform the user that they should enable the content.</p>
<p>So what I'm actually asking for is how do I do this:</p>
<ol>
<li>If vba and macros <strong>is not enabled</strong> -> show form "information"</li>
<li>If vba and macros <strong>is enabled</strong> -> show form "start menu"</li>
</ol>
http://stackoverflow.com/questions/1855811/vba-columns-automatically-merge0VBA Columns Automatically Merge?Daniel2009-12-06T16:31:10Z2009-12-06T17:08:57Z
<p>I am writing a program in VBA that first compiles a Range from a series of cells and then later loops through the range to collect the data in the cells.</p>
<p>The problem is that I need the range to maintain the order in which I add the cells so that I can then collect the data in the correct order when I go back through. If the data are in columns that are adjacent, then the range converts it into stacks of rows.</p>
<p>To see what I mean, If you run this program:</p>
<p>Sub test_function()</p>
<p>Dim My_Range As Range</p>
<p>Dim My_Cell As Variant</p>
<p>Dim i As Integer</p>
<p>i = 0</p>
<p>Set My_Range = Union(ActiveSheet.Range("A1:A5"), ActiveSheet.Range("B1:B5"))</p>
<p>For Each My_Cell In My_Range</p>
<pre><code>i = i + 1
My_Cell.Value = i
</code></pre>
<p>Next My_Cell</p>
<p>End Sub</p>
<p>You can see that the range is compiled of two adjacent columns of data (A1:A5 and B1:B5), but instead of this EXPECTED output:</p>
<p>1 6</p>
<p>2 7</p>
<p>3 8</p>
<p>4 9</p>
<p>5 10</p>
<p>You get</p>
<p>1 2</p>
<p>3 4</p>
<p>5 6</p>
<p>7 8</p>
<p>9 10</p>
<p>It will reproduce this behavior even if you add one cell at a time using
Set My_Range = ActiveSheet.Range("A1")
Set My_Range = Union(My_Range, ActiveSheet.Range("A2"))
Set My_Range = Union(My_Range, ActiveSheet.Range("A3"))
etc...</p>
<p>Is there any way to preserve the order in which I add cells to a range? Or is the only way to have separate adjacent ranges? At the very least (if I can't get it to preserve the exact order) is there a way for it to do columns FIRST and THEN rows?</p>
<p>-Daniel</p>
http://stackoverflow.com/questions/1855565/using-vba-how-to-automatically-run-a-microsoft-word-macro-after-a-merge0Using VBA how to automatically run a Microsoft Word macro after a mergeLucifer2009-12-06T14:42:09Z2009-12-06T15:01:58Z
<p>Hi</p>
<p>What do I need to do to get a macro to run after a Microsoft Word document has been merged?</p>
<p>We are using Office 2003.</p>
<p>The macro is already written, but I do not know how to attach to the <strong>MailMergeAfterMerge</strong> event?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1853589/collapse-subtotals-to-level-2-using-vba0collapse subtotals to level 2 using VBAconfused2009-12-05T21:49:16Z2009-12-06T13:34:45Z
<p>does anyone know how to use VBA to collapse subtotals (once created) to level 2 so I only see the summary?</p>
http://stackoverflow.com/questions/1855096/how-to-determine-next-tabstop-in-vba-userform0How to determine next tabstop in VBA UserForm?Gary McGill2009-12-06T11:12:55Z2009-12-06T11:41:32Z
<p>I have a UserForm with some textbox entry fields on it that are enabled/disabled by a checkbox. When a checkbox is clicked to check it, I'd like to move the focus into the now-enabled textbox.</p>
<p>The textbox is the next control after the checkbox in the tab order, so it seems like using the tab order to find the appropriate textbox would be a good idea.</p>
<p>But... how can I find the next control in the tab order after a given control? Is there a method to do that, or do I have to enumerate <em>all</em> the controls and figure it out for myself?</p>
http://stackoverflow.com/questions/1853196/a-couple-of-questions-about-word-macros0A couple of questions about Word macrosJavier Badia2009-12-05T19:33:49Z2009-12-05T19:45:11Z
<p>I need to grab a list of names from Excel and insert them into a Word document, printing one document per name. The document has some text and a bookmark called "name". The code is below.</p>
<p>First, I want to know if it's possible to detect how long is the list of names in the Excel spreadsheet and grab that, instead of hardcoding the number.</p>
<p>Second, I can't figure out how to delete the text I already put inside the document. When I insert text in a bookmark, it gets appended after the bookmark, so if I keep adding names they all stack together.</p>
<p>Maybe with the code this will be clearer:</p>
<pre><code>Sub insertar_nombre()
Dim Excel As Excel.Application
Dim Planilla As Excel.Workbook
Dim Hoja As Excel.Worksheet
Set Excel = CreateObject("Excel.Application")
Dim Filename As String
Dim fname As Variant
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.Title = "Seleccionar Documento de Excel"
.Show
For Each fname In .SelectedItems
Filename = fname
Next
End With
Set Planilla = Excel.Workbooks.Open(Filename)
Set Hoja = Planilla.Worksheets(1)
Dim Nombre As String
For Count = 2 To 10
Nombre = Hoja.Cells(Count, 1).Value
ActiveDocument.Bookmarks("name").Range.Text = Nombre
ActiveDocument.PrintOut
Next
End Sub
</code></pre>
<p>Forgive me if this code is obviously wrong or something, I'm just beginning with this.</p>
http://stackoverflow.com/questions/1852653/how-do-i-return-the-location-of-the-marching-ants-in-excel1How do I return the location of the marching ants in Excel?Kuyenda2009-12-05T16:34:44Z2009-12-05T19:11:02Z
<p>I know about Application.CutCopyMode, but that only returns the state of the CutCopyMode (False, xlCopy, or xlCut).</p>
<p>How do I return the address of the currently <em>copied</em> range in Excel using VBA? I don't need the currently <em>selected</em> range (which is Application.Selection.Address). I need the address of the range of cells with the moving border (marching ants) around it.</p>
<p>In other words, if you select a range of cells, hit CTRL+C, and then move the selection to another cell, I need the address of the cells that were selected when the user hit CTRL+C.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1849580/export-ms-access-tables-through-vba-to-an-excel-spreadsheet-in-same-directory0Export MS Access tables through VBA to an excel spreadsheet in same directoryMatt2009-12-04T20:50:11Z2009-12-05T15:24:54Z
<p>I have two tables in my access database that I want to be able to export to excel. I can do it by opening the table and then doing File->Export... and then choosing the format and typing in the file name. However, this way the user actually has to type the name in so there is room for misnaming the file or for saving it as the wrong format or in the wrong location. Also, the two tables have to be exported to two separate workbooks. What I want to be able to do is make a button on a form that automatically exports one table to one worksheet and the other to another worksheet, both in the same excel workbook. If putting them in the same workbook isn't possible, that's fine. I just want them to automatically be exported to the same directory my access database is saved in. If you know how to do it, an added perk might be to customize the name to include the date. That way the directory would have historical exports as well. Any advice?</p>
http://stackoverflow.com/questions/1847803/xl-vba-passing-an-array-in-a-user-defined-function0XL VBA - Passing an array in a user defined function?unknown (google)2009-12-04T15:44:22Z2009-12-05T09:46:21Z
<p>How to pass an array as a parameter for a user defined function in MS Excel VBA?</p>
<p>Eventually I want to test that if a given date (dateDay) is in several ranges of dates (arrayVacation):</p>
<pre><code>Function CB_IsInRangeArr(dateDay As Date, ParamArray arrayVacation() As Variant) As Boolean
' Test that the array is in the form of 2 columns and n rows / if not send back an error
If (UBound(arrayVacation, 1) <> 2) Then
CB_IsInRangeArr = CVErr(xlErrNA)
Else
CB_IsInRangeArr = TRUE
End If
End Function
</code></pre>
<p>Yet already at this stage, the function does not work properly. It returns #VALUE! and I can find a way to get it to work.</p>
<p>Thank you for your help,</p>
http://stackoverflow.com/questions/1291605/user-defined-functions-in-excel-and-speed-issues2User Defined Functions in Excel and Speed IssuesB Rivera2009-08-18T03:15:42Z2009-12-05T09:40:05Z
<p>I have an Excel model that uses almost all UDFs. There are say, 120 columns and over 400 rows. The calculations are done vertically and then horizontally --- that is first all the calculations for column 1 are done, then the final output of column 1 is the input of column 2, etc. In each column I call about six or seven UDFs which call other UDFs. The UDFs often output an array.</p>
<p>The inputs to each of the UDFs are a number of variables, some range variables, some doubles. The range variables are converted to arrays internally before their contents are accessed.</p>
<p>My problem is the following, I can build the Excel model without UDFs and when I run simulations, I can finish all computations in X hours. When I use UDFs, the simulation time is 3X hours or longer. (To answer the obvious question, yes, I need to work with UDFs because if I want to make small changes to the model (like say add another asset type (it is a financial model)) it takes nearly a day of remaking the model without UDFs to fit the new legal/financial structure, with UDFs it takes about 20 minutes to accommodate a different financial structure.)</p>
<p>In any case, I have turned off screen updating, there is no copying and pasting in the functions, the use of Variant types is minimal, all the data is contained in one sheet, i convert all range type variables to arrays before getting the contents.</p>
<p>What else can I do other than getting a faster computer or the equivalent to make the VBA code/Excel file run faster? Please let me know if this needs more clarification.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1844872/how-can-i-know-which-item-in-a-mult-select-microsoft-access-listbox-was-clicked3How can I know which item in a mult-select Microsoft Access listbox was clicked?Seth Spearman2009-12-04T04:31:43Z2009-12-05T04:14:48Z
<p>Hello, </p>
<p>I have a listbox in a Microsoft Access form. The MultiSelect property is set to simple. </p>
<p>I want to know which item in the listbox was clicked. Keep in mind that an item may be clicked to SELECT or UNSELECT an item.</p>
<p>Is there a simple way to do this? If not is there a complicated way to do this?</p>
<p>I tried to use the SendMessage windows API but no banana because Access controls do not support an hwnd property. </p>
<p>Seth</p>
http://stackoverflow.com/questions/1848950/most-efficent-way-to-add-formatting-excel-vba0Most Efficent Way to Add Formatting Excel - VBAIrwin M. Fletcher2009-12-04T18:53:16Z2009-12-04T21:07:28Z
<p>I have a macro that add hundreds of lines of data to an excel spreadsheet. I call a procedure from a loop which inserts each line of data. I have been applying the formatting for the row each time that I insert that data. However, during my testing I have found that I can insert all of the data about 3/4 of second faster (3.3 sec vs. 4.11 sec) when I don’t apply the formatting line by line but all at once. The issue that I am trying to overcome is that not every row has the same formatting; however, there is a predictable pattern. Two rows of one formatting and one row of different formatting. Is there a way without looping to apply these two different formats all at one that would allow me to keep the performance gains that I am getting (users would like to see a sub 2 second response so this could be a big gain).</p>
<p>I am currently using the following code (application settings such as screenupdating, calculations, and events are all turned off during this)</p>
<pre><code>Private Sub BuildTerminalSummary(ByRef terminals, ByVal timeFrame)
Dim terminal As clsTerminal
Dim curSheet As Worksheet
Dim breakLoop As Boolean
Dim terminalCode As String
Dim rowNumber As Long
Set terminal = New clsTerminal
Set curSheet = Sheets("Terminal Summary")
rowNumber = 7
'Remove all content, borders, and tint
ClearPage curSheet, rowNumber
For Each terminal In terminals
AddDetailData curSheet, terminal.InfoArray, rowNumber
AddDetailData curSheet, terminal.PriorInfoArray, rowNumber + 1
AddDiffPercentFormulas curSheet, terminal.DiffPercentInfoArray, rowNumber + 2
rowNumber = rowNumber + 2
Next terminal
'Make sure the columns are wide enough to display the numbers
curSheet.Cells.EntireColumn.AutoFit
End Sub
Private Sub AddDetailData(ByRef curSheet, ByRef data, ByVal rowNumber)
With curSheet
With .Cells(rowNumber, 3).Resize(1, 16)
.value = data
.Style = "Comma"
.NumberFormat = "_(* #,##0_);_(* (#,##0);_(* ""-""??_);_(@_)"
End With
'This overides the formatting in the revenue columns with currency instead of comma style
With .Cells(rowNumber, 5).Resize(1, 2)
.Style = "Currency"
.NumberFormat = "_($* #,##0_);_($* (#,##0);_($* ""-""??_);_(@_)"
End With
With .Cells(rowNumber, 13).Resize(1, 6)
.Style = "Currency"
End With
End With
End Sub
Private Sub AddDiffPercentFormulas(ByRef curSheet, ByRef data, ByVal rowNumber)
With curSheet.Cells(rowNumber, 3).Resize(1, 16)
.value = data
.NumberFormat = "0.00%"
End With
End Sub
</code></pre>
http://stackoverflow.com/questions/1849574/mail-merge-script-to-merge-headers-footers0mail merge script to merge headers/footers?aZn1372009-12-04T20:48:53Z2009-12-04T20:48:53Z
<p>Hi,</p>
<p>I'm writing a script to merge 2 doc templates into 1 master doc, depending on some criteria. This is what I have so far:</p>
<p>{ if mergefield effort_ } = 5 "{ includtext "C:\1\PL5.doc"}" ""{includetext "C:\1\PL6.doc"}"}</p>
<p>The merged doc works fine, but in my PL5 and PL6 files, I have some headers and footers. The merged doc can only contain the main content of the merging letters. I was able to google some code, but it doesnt work. Will you please help?</p>
<pre><code>Sub mklink()
Dim w As Range
Dim p As String
Dim q As String
Dim s As String
'''''''''''''''''''''''
' select current word
Set w = Selection.Range
w.Expand
'bookmark it
ActiveDocument.Bookmarks.Add Range:=w, Name:="bm"
'create the link field code text
p = ActiveDocument.FullName
q = Replace(p, "\", "\\") 'Must escape filename backslashes
s = "link word.document.12 " & q & " bm \a \r"
'Put field code in footer
With ActiveDocument.Sections(1)
.Footers(wdHeaderFooterPrimary).Range.Fields.Add Range:=.Footers(wdHeaderFooterPrimary).Range, Text:=s
End With
End Sub
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1848417/problems-with-excels-application-evaluate-command-in-vba1problems with excel's application.evaluate command in vbaSamuel2009-12-04T17:20:39Z2009-12-04T17:38:28Z
<p>Hi guys, I have a problem with some excel code that I am having trouble getting my head around.</p>
<p>Okay so I am using the application.evaluate command in excel vba, office 2007.</p>
<p>If i have <code>Evaluate("SIN(45)")</code> it returns a nice predicted number. However if I do <code>Evaluate("eq")</code> the code crashes. </p>
<p>eq is an equation i am reading in from excel. the equation is: <code>3*x^2+5*x+1</code>. It is passed in as a string. to make sure this happened I placed it in another variable that I had defined as a string. I replace the x's in the equation using excel's replace function. <code>equation = Replace(equation, "x", temp)</code>.</p>
<p>However, when i get to the evaluate the code breaks down and I am not sure why. <code>Total = Total + Evaluate("equation")</code>. Any help is greatly appreciated</p>
http://stackoverflow.com/questions/1847577/how-can-i-copy-only-text-of-a-specific-colour-in-excel0How can I copy only text of a specific colour in Excel?tamewhale2009-12-04T15:12:57Z2009-12-04T16:28:09Z
<p>I have a worksheet with a large number of cells containing large amounts of text. Within any particular cell there may be some text that is coloured red. I want to remove that text and copy it to a different column.</p>
<p>I have a VBA function that does this by checking the cell contents character by character but the spreadsheet is quite large and the process slows down to a crawl. Is there a more efficient way of doing this?</p>
http://stackoverflow.com/questions/1840755/vba-string-length-problem0VBA string length problemzohair2009-12-03T15:42:33Z2009-12-04T14:55:52Z
<p>Hi,</p>
<p>I have an Access application where everytime a user enters the application, it makes a temp table for that user called 'their windows login name'_Temp. In one of my reports I need to query using that table, and I can't just make a query and set it as the recourdsource of the report, since the name of the table is always different. </p>
<p>What I tried then was to programatically set the recordset of the report by running the query and setting the form's recordset as the query's recordset. When I tried this, it kept giving me an error about the query. </p>
<p>I tried to debug, and I found that the string variable isn't able to contain the whole query at once. When I ran it with break points and added a watch for the string variable, it shows me that it cuts off the query somewhere in the middle.</p>
<p>I've experienced this problem before, but that was with an UPDATE query. Then, I just split it into two queries and ran both of them separately. This one is a SELECT query, and there's no way I can split it. Please help!</p>
<p>Thank you</p>
<p>Heres what I've tried doing:</p>
<p>ReturnUserName is a function in a module that returns just the login id of the user</p>
<pre><code>Private Sub Report_Open(Cancel As Integer)
Dim strQuery As String
Dim user As String
user = ReturnUserName
strQuery = "SELECT " & user & "_Temp.EmpNumber, [FName] & ' ' & [LName] AS [Employee Name], " & _
"CourseName, DateCompleted, tblEmp_SuperAdmin.[Cost Centre] " & _
"FROM (tblCourse INNER JOIN (" & user & "_Temp INNER JOIN tblEmpCourses ON " & _
user & "_Temp.EmpNumber = EmpNo) ON tblCourse.CourseID = tblEmpCourses.CourseID) " & _
"INNER JOIN tblEmp_SuperAdmin ON " & user & "_Temp.EmpNumber = tblEmp_SuperAdmin.EmpNumber" & _
"WHERE (((" & user & "_Temp.EmpNumber) = [Forms]![Reports]![txtEmpID].[Text])) " & _
"ORDER BY CourseName;"
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
Dim rsCmd As ADODB.Command
Set rsCmd = New ADODB.Command
rsCmd.ActiveConnection = CurrentProject.Connection
rsCmd.CommandText = strQuery
rs.Open rsCmd
Me.Recordset = rs
rs.Close
End Sub
</code></pre>
<p>This what strQuery contains when I add a breakpoint on <code>rsCmd.CommandText = strQuery</code>:</p>
<blockquote>
<p>SELECT myusername_Temp.EmpNumber, [FName]
& ' ' & [LName] AS [Employee Name],
CourseName, DateCompleted,</p>
<p>tblEmp_SuperAdmin.[Cost Centre] FROM</p>
<p>(tblCourse INNER JOIN (myusername_Temp
INNER JOIN tblEmpCourses ON</p>
<p>myusername_Temp.EmpNumber = EmpNo) ON
tblCourse.CourseID=</p>
</blockquote>
<p>(It's all one line, but I've written it like this because the underscores italicize the text)</p>
<p>And the error I get says Run Time Error: Join not Supported. </p>
http://stackoverflow.com/questions/1845874/use-ifilter-from-vb0Use IFilter from VBTodd Owen2009-12-04T09:34:15Z2009-12-04T14:09:59Z
<p>I am using VBA (in Access 2003) and I'd like to use the IFilter mechanism to extract the textual contents of files. I found some some nice C++ <a href="http://the-lazy-programmer.com/blog/?p=8" rel="nofollow">sample code</a> which makes it look relatively easy, but at the moment I can't even get the DLL call to <a href="http://msdn.microsoft.com/en-us/library/ms691002%28VS.85%29.aspx" rel="nofollow">LoadIFilter</a> to work:</p>
<pre><code>Declare Function LoadIFilter Lib "query.dll" (ByVal pwcsPath As String, _
ByVal pUnkOuter As Object, ByRef ppIFilter As Object) As Integer
Public Sub DocEx()
Dim ifilter As Object
Dim hresult As Integer
hresult = LoadIFilter("C:\temp\test.txt" & Chr(0), Nothing, ifilter)
Debug.Print hresult
End Sub
</code></pre>
<p>hresult is always E_FAIL (= 16389).</p>
<p>Is it my syntax for the DLL that is incorrect, or something else?</p>
http://stackoverflow.com/questions/660312/how-can-i-read-a-binary-file-using-vba2how can I read a binary file using VBA?Nick2009-03-18T22:11:06Z2009-12-04T06:56:58Z
<p>I have a binary file that resulted from a program written in Compaq Visual Fortran.
How can I read specific lines and save them in an Excel sheet?</p>
http://stackoverflow.com/questions/340428/vba-is-it-possible-to-run-a-form-as-a-exe-file1VBA: Is it possible to run a form as a .exe filetksy2008-12-04T12:25:40Z2009-12-03T21:26:39Z
<p>Is it possible to save a form in VBA as .exe file and then run it.</p>
http://stackoverflow.com/questions/1841990/how-to-bottom-align-string-in-access-report-textbox0How to bottom-align string in Access report textbox?TonBill2009-12-03T18:42:40Z2009-12-03T20:19:13Z
<p>Using Access 2003. On a subreport I have arranged a row of text boxes that will be populated with dynamic data. (These will appear as column headers on a master report.) Due to report constraints, the text boxes are tall and somewhat thin; some incoming strings will be longer than other strings; strings are expected to wrap when necessary. Presently, each of these text boxes is bottom-aligned.</p>
<p>What I am looking for is a way to force the text in each of these boxes to be bottom-aligned, to grow upward as it were. As we know, Excel natively allows bottom alignment in a cell; I do not see that Access offers a similar capability. Any hints? A VBA technique maybe? Thanks.</p>
http://stackoverflow.com/questions/1841215/excel-vba-select-case-loop-sub0Excel VBA Select Case Loop SubZack2009-12-03T16:45:33Z2009-12-03T19:00:52Z
<p>In my excel file, I have a table setup with formulas.</p>
<p>with Cells from Range("B2:B12"), Range ("D2:D12"), and etc every other row containing the answers to these formulas.</p>
<p>for these cells (with the formula answers), I need to apply conditional formatting, but I have 7 conditions, so I've been using "select case" in VBA to change their interior background based on their number. I have the select case function currently set up within the sheet code, as opposed to it's own macro</p>
<pre><code>Private Sub Worksheet_Change(ByVal Target As Range)
Dim iColor As Integer
If Not Intersect(Target, Range("B2:L12")) Is Nothing Then
Select Case Target
Case 0
iColor = 2
Case 0.01 To 0.49
iColor = 36
Case 0.5 To 0.99
iColor = 6
Case 1 To 1.99
iColor = 44
Case 2 To 2.49
iColor = 45
Case 2.5 To 2.99
iColor = 46
Case 3 To 5
iColor = 3
End Select
Target.Interior.ColorIndex = iColor
End If
End Sub
</code></pre>
<p>but using this method, you must be actually entering the value into the cell for the formatting to work.</p>
<p>which is why I want to write a subroutine to to do this as a macro. I can input my data, let the formulas work, and when everything is ready, I can run the macro and format those specific cells.</p>
<p>I want an easy way to do this, obviously I could waste a load of time, typing out all the cases for every cell, but I figured it'd be easier with a loop.</p>
<p>how would I go about writing a select case loop to change the formatting on a a specific range of cells every other row?</p>
<p>thank you in advance.</p>
http://stackoverflow.com/questions/297277/vba-long-overflow1VBA long overflowHKK2008-11-17T22:58:14Z2009-12-03T18:27:47Z
<p>Hi I am trying to do some maths with my VBA excel (prime factorization) and I am hitting the limit of the long data type (runtime error 6 Overflow). </p>
<p>Is there any way to get around this and still stay within VBA? (I am aware that the obvious one would be to use another more appropriate programming language)
Thanks for help in advance!</p>