to change font color of imported data in excel...through CAL
KGS
Member Posts: 13
can we change the color , font etc of data which is imported to excel from navision; with the help of CAL code. Please help!!!!!!!!!!!!!!!!!!!!
0
Comments
-
If you mean with the help of table 370:"Excel Buffer". It should be possible, you only need to create some new field(s) and put some code to send the properties to the excel-cell.Regards,Alain Krikilion
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!0 -
You mean something like:
XlWorkSheet.Range(xlColID + xlRowID).Interior.ColorIndex := "Background Color"; XlWorkSheet.Range(xlColID + xlRowID).Font.ColorIndex := "Font Color"; IF "Left Border Type" <> 0 THEN XlWorkSheet.Range(xlColID + xlRowID).Borders.Item(XlEdgeLeft).LineStyle := XlContinuous; IF "Right Border Type" <> 0 THEN XlWorkSheet.Range(xlColID + xlRowID).Borders.Item(XlEdgeRight).LineStyle := XlContinuous; IF "Top Border Type" <> 0 THEN XlWorkSheet.Range(xlColID + xlRowID).Borders.Item(XlEdgeTop).LineStyle := XlContinuous; IF "Bottom Border Type" <> 0 THEN XlWorkSheet.Range(xlColID + xlRowID).Borders.Item(XlEdgeBottom).LineStyle := XlContinuous; CASE Alignment OF Alignment::Left: XlWorkSheet.Range(xlColID + xlRowID).HorizontalAlignment := -4131; Alignment::Center: XlWorkSheet.Range(xlColID + xlRowID).HorizontalAlignment := -4108; Alignment::Right: XlWorkSheet.Range(xlColID + xlRowID).HorizontalAlignment := -4152; END; IF "Font Size" <> 0 THEN XlWorkSheet.Range(xlColID + xlRowID).Font.Size := "Font Size";(the used values are new fields in Excel Buffer) tis code was added into CreateSheet function...0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
