How to export excel in left align always?
chandrurec
Member Posts: 560
Hi all,
I want to export the data to excel using excel buffer concept. By stand , text will be left aligned and numeric will be right aligned. But I want always to follow the left alignment.
so I read one forum in mibuso and put the following code in excel buffer table.
XlWrkSht.Range(xlColID + xlRowID).HorizontalAlignment := HorzAlign;
but after I put this code , its still works the std way.
if anyone knows how to achieve the scenario, kindly let me know.
Thanks in advance,
Regards,
chandru.
I want to export the data to excel using excel buffer concept. By stand , text will be left aligned and numeric will be right aligned. But I want always to follow the left alignment.
so I read one forum in mibuso and put the following code in excel buffer table.
XlWrkSht.Range(xlColID + xlRowID).HorizontalAlignment := HorzAlign;
but after I put this code , its still works the std way.
if anyone knows how to achieve the scenario, kindly let me know.
Thanks in advance,
Regards,
chandru.
0
Comments
-
You can also add ' before decimal value to make it text which will automatically assign to left.0
-
Hi Mohana,
I tried to assign the decimal to text using format but still I found that the alignment is not left aligned.
Thanks & Regards,
chandru.0 -
Excel still interprets it as numeric.
Add the ' before the number as recommended and it will be treated as text.
Value:='''' + FORMAT(Number);David Machanick
http://mibuso.com/blogs/davidmachanick/0 -
Setting the alignment, did you use these values?
XlWrkSht.Range(xlColID + xlRowID).HorizontalAlignment := -4108; //Center XlWrkSht.Range(xlColID + xlRowID).HorizontalAlignment := -4131; //Left XlWrkSht.Range(xlColID + xlRowID).HorizontalAlignment := -4152; //Right
* Daniele Rebussi * | * Rebu NAV Diary *0 -
Have you tried using CStr to convert decimal values to string?
i.e.
aDecimalVariable = Cstr(aDecimalVariable)
should treat the new value of 'aDecimalVariable' as a string.0
Categories
- All Categories
- 73 General
- 73 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
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 328 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

