1
vote
1answer
54 views

How to split a column in Excel into multiple columns, using categories from another column?

I have a very large data set with hundreds of thousands of rows. I have managed to split it into two columns like so: Name: | John Birth year: | 1982 Favorite sport: | Rugby Favorite ...
1
vote
2answers
100 views

Mathematical transpose in excel

Good day everybody! I'm currently trying to figure something out in excel before implementing in it VBScript. I have to mathematically transpose a few cells (10*10 or 5r*10c) in a matrice: ...
0
votes
0answers
69 views

VBS working in xp but not on 7

This part of vbs script works fine on XP, but not on 7 with office 2010: if warningmessage <> "" then XlWkbook.SaveAs currentpath() & "\WARNING_" & OutputFileName else ...
1
vote
1answer
435 views

vbscript Open Excel 2010 in a separate process

I've been trying to figure out how to properly format these strings for RegWrite but haven't been able to figure it out. When finished the script modifies a few areas in the registry so that multiple ...
0
votes
1answer
804 views

Push the data from excel sheet to access database

I was looking for a way to push the data from excel to Access database. accordingly i found one code but it is not clear to me,how can I improved. Can I have a bit help for the same? Dim wsQS As ...
0
votes
1answer
786 views

SQL Server- VBScript: VBScript to open Excel file failed in SQL Job?

In reference to vbScript opens up excel but doesn't load macro/modules? Now I tried to run my vbscript from SQL Job. Though I get Job executed successfully, it didn't open up my excel ...
1
vote
1answer
1k views

vbScript opens up excel but doesn't load macro/modules?

I m in a very weird situation. I created a vbs script that would open my excel file. I had defined vba code in WorkBook_open method. I thought creating a vbs script to open up my excel would invoke my ...
2
votes
2answers
6k views

VBScript - How to make program wait until process has finished?

I have a problem in a VBScript that I am using with a VBA/Excel macro and a HTA. The problem is just the VBScript, I have the other two components, i.e. the VBA macro and HTA front-end working ...
1
vote
2answers
253 views

How could I refer to built-in MS Excel type with OLE

my application should perform some simple actions in Excel, like adding charts, list objects and so on. I'm using OLE connection. The problem is, that some Excel methods taking built-in types ...
1
vote
1answer
2k views

VBScript to import HTML into Excel and create chart

As you can tell by the following code, I'm new to VBscripting for Excel. I'm simply trying to import an HTML file ("DEMO8.HTM") into Excel and create a chart based on the data in column F. The chart ...