How can i Import of data from EXCEL to NAV 2013 ?
manikandan
Member Posts: 160
Dear All,
How can i Import of data from EXCEL to NAV 2013.
Please help me? ](*,) ](*,)
Regards,
Muthusubramanian.M
How can i Import of data from EXCEL to NAV 2013.
Please help me? ](*,) ](*,)
Regards,
Muthusubramanian.M
0
Answers
-
you can import excel data from the SQL Management Studio (Right click on your database, Import Data, choose Microsoft Excel for data source) or write your own code in Navision, using the Excel automations or DotNet assemblies.-Mihail- [MCTS]0
-
here is the full info on copy/paste
http://dynamicsuser.net/blogs/kine/archive/2012/06/05/microsoft-dynamics-nav-2013-tip-1.aspx0 -
Another option is to use our new improved Excel Buffer feature where you read the all the information from the Excel sheet into the Excel Buffer table 370
We are planning to do a couple of blog posts (http://blogs.msdn.com/b/nav/) on the Excel Buffer within the next couple of weeks, but here is an example on how to read.
This example will illustrate the reading capabilities that are possible.
1. Create a new codeunit
2. Add a new temporary record variable for table 370 called ExcelBuffer.
3. Add a new text variable called MessageValue
4. Then add the following lines:
ExcelBuffer.DELETEALL;
ExcelBuffer.OpenBook('C:\TEMP\ExcelBufferReadBookScenario.xlsx','Sheet ABC');
ExcelBuffer.ReadSheet();
IF ExcelBuffer.FINDFIRST THEN
REPEAT
MessageValue := MessageValue + ExcelBuffer."Cell Value as Text" + '\';
UNTIL ExcelBuffer.NEXT = 0;
MESSAGE(MessageValue);“This posting is provided "AS IS" with no warranties, and confers no rights.”
Lars-Bo Christensen
Software Developer @ Microsoft0 -
Yes the performance has really changed dramatically to the better, since we are now executing and generating everything on the server instead of the “chatty” client / server automation solution. We don’t have any specific numbers, since this is based a lot on the size of the Excel worksheet you read or write. But try it out and I’m sure you will not regret it.“This posting is provided "AS IS" with no warranties, and confers no rights.”
Lars-Bo Christensen
Software Developer @ Microsoft0 -
hi all,
Thanks a lot mihail_kolev,Belias,mohana_cse06 and ddlarsc for all your replies.
Now my problem is solved .
Regards,
muthusubramanian.M0 -
mihail_kolev wrote:you can import excel data from the SQL Management Studio
NAV validation does not work in this case.Now or Never0 -
NAV 2013 has come up with Standard tool to import the data from excel. The tool is Config package Card which is similar to data migration tool of previous version, but much more faster and easier to use. this tool also has all the validations. So now when u upload a data it will be validated.
It is accessible through IT manager Profile. Under home --> there will be option Edit migration overview.
So more info, refer the below link
http://msdn.microsoft.com/en-us/library ... 6(v=nav.71).aspx0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 324 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions

