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 Chriss Miller 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: *

  • Users: bojzon
  • Content: Threads
  • Order by date
  1. bojzon

    PivotTable question

    If I run VBA routine (Win XP. excel 2003): ActiveSheet.PivotTables("PivotTable1").PivotSelect ("'Row Grand Total'"), xlDataAndLabel, True With Selection.Interior .ColorIndex = 6 .Pattern = xlSolid End With Selection.Font.Italic = True I get 1004 ERROR (about false...
  2. bojzon

    Column Header value for Range Name and Pivot Item

    How to control (with VBA) cell value in column header (restricted characters,blanks,...), before creating (changing) range name and before creating (changing) pivot table (excel 2000 and more). Are both limitations the same or different? Thanks Bojzon
  3. bojzon

    Changing marker style of a data series

    Is it possible (in MS excel graph) to change the line color or the marker style of a data series IN THE "MIDLE" OF DATA? EX.: data series include DATA UP TO NOW (DATA FROM DATABASE) AN REST (PROJECTION) TO THE END OF YEAR? Need "projection" with different marker or color. Thanks Bojzon
  4. bojzon

    Pivot table slow reading records - ODBC text driver

    WinXP, off2003, PC RAM 2 Gb, procesor 3,8 GHz Problem: I should (VBA sub)create xls pivot table report from txt file with 150.000 recors or more. I used ODBC text driver connection and first 56.000 recors are reading normaly, but others 100.000 with speed about 60 records per second. (the same...
  5. bojzon

    Display ModuleName in StatusBar

    Is it possible to display current (among many of them) running module name in excel status bar (WinXP, Off2003)? Thanks! Bojzon
  6. bojzon

    VBA REPLACE - too many lines in Module

    Need to replace about 10.000 items in xls column with 50.000 data. In Module I exceed maximum number lines of code. How to reduce number of lines with code? (WIN XP, Off2003). Any suggestions? (arrays?, list?,..) Bojzon
  7. bojzon

    Application.Run trouble

    I have difficulties with execute macros within macros.(First wkb run macro, call another wkb with macro, when second wkb macro finished, first wkb macro stop running too - without errors..) Application.Run "Izpisek2006.xls!TXT_v_XLS" Application.Run "'C:\IzpiskiNLB\VNO.xls'!Print1"...
  8. bojzon

    Pivot table - refresh with close Wkb range dynamic

    Need help with correct reference with two workbooks with more then 1 sheets. First one Wkb is opened and other Wkb is closed (could not open both , because of RAM resources). PT from opened is referenced to closed Wkb range (ex.: \Plan\Plan2006\ Model.xls!RangeDynamic). How input correct...
  9. bojzon

    Pivot table- range dynamic - offset - do not refresh correct

    I have pivot table (left upper corner - J1) on sheet with data (A1:D50000). Number of rows changes a lot, and I always DELETE PREVIOUS PIVOT TABLE AND NAME!!, and create new new pivot table from the beginning (Data are named "RangeDynamic" and "=OFFSET(" & ShtName & "!R1C1,0,0,COUNTA(" &...
  10. bojzon

    Rand - Randbetween

    How create in VBA "MyRAND" for random selecting only some noncontiguous (40) numbers. (ex. 20,25,30,40,41,....75..) Round(RAND() * (40-1)+1, 0) > use contiguos numbers in between 1 to 40. Thanks for advice
  11. bojzon

    Converting all data in column with multiplier ( *1)

    (excel 2000, xls) In selected columns need every cell convert data to NUMBER with multiplier *1. Is there any quicker way than cell by cell? Thanks Bojzon
  12. bojzon

    How delete rows with AUTOFILTER (VBA) - more than 1 Criteria

    In a large xls table (excel 2000) I selected data with Autofilter with 3 Criteria at once .: Field:1, Criteria1:=X Field:3, Criteria1:=Y Field:11, Criteria1:=N Need VBA code to delete (or copy) selected visible rows and reset used range. Thanks Bojzon
  13. bojzon

    Select "numberformat cells" with autofilter ?

    In some columns I need to find if exist more then one number format. Is it possible to select cells and rows "with custom number format" using autofilter? Any alternative for large xls tables? I tried with additional column with ActiveCell.Value = Cell.Offset(0, -1).NumberFormat with no...
  14. bojzon

    How to ADD workbook name and get result without quote?

    This part of code produce in DEFINE NAME>NAMES>REFERS TO: result with quote -"". Need suggestion how to get result without guote? CODE ActiveWorkbook.Names.Add Name:="Data" , RefersToR1C1:= _ "Offset(" & ShtName & "!$" & FC & "$" & FR & ";0;0;CountA(" & ShtName & "!$" & FC & ":" & "$" & FC &...
  15. bojzon

    How create more then 1 (sub)folder ?

    I need to create with FileSystemObject from D:\ MyFolder\ subFolder1\subFolder2\subFolder3 the same structure subfolders to C:\ Backup\ MyFolder\ subFolder1\subFolder2\subFolder3 I get Run time error 76 – Path not found – (Respecify the path) for code line :fso.CreateFolder...
  16. bojzon

    move all specific files from entire disk

    Need help with subroutine: searching on entire C:\ for: - all specific files (p.e. starting with characters BACK - "BACK123.XLK" - with extension XLK(or XLS, or DOC), except searching (skip) folder C:\Backups - and MOVE all (with overwrite) to destination C:\Backups\M - and COPY all (with...
  17. bojzon

    Create and insert range

    How to create Sub? I select xls files with "Application.GetOpenFilename". With selected xls workbooks I would like to: - create "Sheet name" as "workbook name" - add (create and insert)workbook name for each selected workbook with "dinamic used range&quot...
  18. bojzon

    actions on all workbook sheets except except some sheets

    Workbook has 23 sheets (named A,B,C,..,O,P,S1,S21,S33) Sheets(Array("A", "B", "C",....).Select perform actions (like hiding columns, formating printing,freeze,..)on active sheet, not all selected. I want to do "actions" on each of 23 sheets in...

Part and Inventory Search

Back
Top