August 19, 2020 at 4:41 pm
I must have explained that issue (opening CSV in Excel rogers the underlying data) more than a thousand times.
Access solves the problem, but how many accountants use Access?
Was that aimed at me ?
Far away is close at hand in the images of elsewhere.
Anon.
August 19, 2020 at 4:47 pm
August 19, 2020 at 5:10 pm
Random frozen pork chop?
Do launchers require registration and a permit?
Does Anyone offer a safety class?
It seems injuries are rather rare. Or is this something the news ignores?
August 19, 2020 at 5:34 pm
Random frozen pork chop?
Do launchers require registration and a permit?
Does Anyone offer a safety class?
It seems injuries are rather rare. Or is this something the news ignores?
The news ignores it. It's easier to change the long standing names of parts of DNA. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2020 at 6:56 pm
Random frozen pork chop?
Do launchers require registration and a permit?
Does Anyone offer a safety class?
It seems injuries are rather rare. Or is this something the news ignores?
Cannon's are legal in Massachusetts. I'd go with one of those over a launcher.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
August 19, 2020 at 7:16 pm
Amazing!
Is there a guide for in flight cooking? Frozen, thawed, and properly cooked would be good to know.
August 19, 2020 at 7:27 pm
Amazing!
Is there a guide for in flight cooking? Frozen, thawed, and properly cooked would be good to know.
The rules for in flight cooking are simple... Frozen only... it makes a better impact and allows for higher velocities because it moves through the barrel without sticking and the coldness also allows for a denser charge. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2020 at 7:30 pm
Speaking of pork chop cannons... here's one that needs about a 9 course dinner. I'll never understand such requests.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2020 at 9:00 pm
Here is the macro I use in my personal.xlsb that eliminates the errors I get when pasting data from SSMS:
Sub SelectAllFormatAsText()
'
' SelectAllFormatAsText Macro
'
'
Cells.Select
Selection.NumberFormat = "@"
Range("A1").Select
End Sub
412-977-3526 call/text
August 19, 2020 at 9:04 pm
Wow!
I could not resist. I would if they leave keys in the car, and the door unlocked.
I take that back - door open and running.
The other scenario would slow them down too much.
August 20, 2020 at 8:08 am
David Burrows wrote:Phil Parkin wrote:I must have explained that issue (opening CSV in Excel rogers the underlying data) more than a thousand times.
Access solves the problem, but how many accountants use Access?
Was that aimed at me ?
Your post provoked the rant, but it wasn't 'aimed' at anyone.
Just checking 🙂
Your rant is quite correct though, but Excel will not go away and one has to accommodate it's use. I do a lot of Excel import and export and regularly come across this type of problem. I either code round problems or get the end user to fix them.
Based on information from Eirikur I build a library to extract data from Excel without using Excel :-;
Far away is close at hand in the images of elsewhere.
Anon.
August 20, 2020 at 10:40 am
Phil Parkin wrote:David Burrows wrote:Phil Parkin wrote:I must have explained that issue (opening CSV in Excel rogers the underlying data) more than a thousand times.
Access solves the problem, but how many accountants use Access?
Was that aimed at me ?
Your post provoked the rant, but it wasn't 'aimed' at anyone.
Just checking 🙂
Your rant is quite correct though, but Excel will not go away and one has to accommodate it's use. I do a lot of Excel import and export and regularly come across this type of problem. I either code round problems or get the end user to fix them.
Based on information from Eirikur I build a library to extract data from Excel without using Excel :-;
Now we are talking! Are you willing to share the library? Done extensive work on the subject and always interested in exploring alternatives.
😎
August 20, 2020 at 11:15 am
Now we are talking! Are you willing to share the library? Done extensive work on the subject and always interested in exploring alternatives.
😎
It is a .NET VB class library that unzips .xlsx file and deserializes the xml in to classes. It is very basic as all I needed was the data not the styling, but it does produce worksheets with rows, columns and cells.
Far away is close at hand in the images of elsewhere.
Anon.
August 20, 2020 at 11:28 am
Eirikur Eiriksson wrote:Now we are talking! Are you willing to share the library? Done extensive work on the subject and always interested in exploring alternatives.
😎
It is a .NET VB class library that unzips .xlsx file and deserializes the xml in to classes. It is very basic as all I needed was the data not the styling, but it does produce worksheets with rows, columns and cells.
Unfortunately in my contract at work, everything I create is covered by intellectual property rights and copyright, so I will have to check.
I've used a similar approach for the last few years, instead of .Net I'm using 7zip command line for the unzipping of the .xlsx files, works fine and has saved me thousands of hours of work.
😎
If you are interested, I'll ping you a draft of the writeup, mind you that this the first draft so few bits are missing, very interested to see your feedback on it.
A question, how did you resolve the column mapping?
Edit: Added a question
August 20, 2020 at 12:15 pm
If you are interested, I'll ping you a draft of the writeup, mind you that this the first draft so few bits are missing, very interested to see your feedback on it.
Yes please, would be very interested.
A question, how did you resolve the column mapping?
I convert cell references to column indexes and use Dimension for the upper bound, is this what you mean.
Far away is close at hand in the images of elsewhere.
Anon.
Viewing 15 posts - 65,086 through 65,100 (of 66,815 total)
You must be logged in to reply to this topic. Login to reply