Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default Column A is on the right

Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on
Thanks
  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4
Default Column A is on the right

Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message ...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 11,123
Default Column A is on the right

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks



  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4
Default Column A is on the right

Thanks Ron it worked.
Now I have my A column on the left, but I have two pages!!
how can we have only one page at start up?
Sorry man.
Ahmad

"Ron de Bruin" wrote:

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks





  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 11,123
Default Column A is on the right

With two pages you mean two sheets when you open a new workbook

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
Thanks Ron it worked.
Now I have my A column on the left, but I have two pages!!
how can we have only one page at start up?
Sorry man.
Ahmad

"Ron de Bruin" wrote:

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks




  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4
Default Column A is on the right

yes.
two pages

"Ron de Bruin" wrote:

With two pages you mean two sheets when you open a new workbook

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
Thanks Ron it worked.
Now I have my A column on the left, but I have two pages!!
how can we have only one page at start up?
Sorry man.
Ahmad

"Ron de Bruin" wrote:

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks





  #8   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 11,123
Default Column A is on the right

Hi Ahmad

Office ButtonExcel options
Popular

Change "Include this many sheets:" to 1


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
yes.
two pages

"Ron de Bruin" wrote:

With two pages you mean two sheets when you open a new workbook

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Thanks Ron it worked.
Now I have my A column on the left, but I have two pages!!
how can we have only one page at start up?
Sorry man.
Ahmad

"Ron de Bruin" wrote:

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks






  #9   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4
Default Column A is on the right

thanks a lot man

"Ron de Bruin" wrote:

Hi Ahmad

Office ButtonExcel options
Popular

Change "Include this many sheets:" to 1


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message ...
yes.
two pages

"Ron de Bruin" wrote:

With two pages you mean two sheets when you open a new workbook

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Thanks Ron it worked.
Now I have my A column on the left, but I have two pages!!
how can we have only one page at start up?
Sorry man.
Ahmad

"Ron de Bruin" wrote:

Hi Ahmad

Open a new workbook
Alt F11
Use Insert module in the VBA editor
Copy this in the module

Sub test()
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
MsgBox "Ready"
End Sub

With your curser in this macro press F5 to run ther macro

Now close the file without saving



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" wrote in message
...
Hi Ron,
Thank you for your kind assistance.
yes I had enabled Arabic,i.e. right to left language as a second language on
my computer.
You had mentioned in the link you sent me " The default sheet direction for
Excel you can change with this code line
Application.DefaultSheetDirection = xlLTR 'or use xlRTL"
Would you please explain how can I do that in easy steps please.
is my email address.
I appreciate your help


"Ron de Bruin" wrote:

Hi Ahmad

See
http://www.rondebruin.nl/sheetdirection.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ahmad Mahran" <Ahmad wrote in message
...
Hi,
Can anyone help me Please?
When I launch excel 2007, the default page starts from right to left, i.e.
column A is in the far right!
how can I resore column A to be in the far left as usual?
Kindly email me your suggestions on

Thanks







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
divide column(x) by column(y) to give column(x/y) in excel? James New Users to Excel 2 April 24th 23 11:46 AM
Referencing date column A & time column B to get info from column TVGuy29 Excel Discussion (Misc queries) 1 January 24th 08 09:50 PM
Return text in Column A if Column B and Column K match jeannie v Excel Worksheet Functions 4 December 13th 07 07:36 PM
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look [email protected] Excel Discussion (Misc queries) 1 December 27th 06 05:47 PM
what formula do i put for column m = column k minus column l in e. jenniss Excel Discussion (Misc queries) 5 January 6th 05 08:18 PM


All times are GMT +1. The time now is 12:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"