WeekdayName function with different operating system

  • Thread starter Diego via AccessMonster.com
  • Start date
D

Diego via AccessMonster.com

Hi
i use =WeekdayName(Weekday([Data],2)) in a text box in a form thata works
fine.

The problem is that if i change machine with a different operating system it
works not fine since the day name is not correct.

Particulary with Italian operating system XP SP2 it works fine if i write

=WeekdayName(Weekday([Data],2))

with English operating system XP SP2 it works fine if i write

=WeekdayName(Weekday([Data],1))

Anyone knows if there is a patch to install or something to add to avoid this
problem ?
Let me know
Thank you
Diego
 
B

bcap

Both the Weekday and WeekdayName functions have an optional argument,
firstdayofweek. Using it will probably fix your problem.
 
D

Diego via AccessMonster.com

Infact i use it (look at the example)
But the problem is that if for example i use =WeekdayName(Weekday([Data],2))
with different operating system gives different result.

Is there a way to avoid this of change the firstdayofweek related to
operating system ?

Thank you
Diego

Both the Weekday and WeekdayName functions have an optional argument,
firstdayofweek. Using it will probably fix your problem.
Hi
i use =WeekdayName(Weekday([Data],2)) in a text box in a form thata works
[quoted text clipped - 18 lines]
Thank you
Diego
 
B

bcap

WeekdayName(Weekday([Data],2),,2)

Diego via AccessMonster.com said:
Infact i use it (look at the example)
But the problem is that if for example i use
=WeekdayName(Weekday([Data],2))
with different operating system gives different result.

Is there a way to avoid this of change the firstdayofweek related to
operating system ?

Thank you
Diego

Both the Weekday and WeekdayName functions have an optional argument,
firstdayofweek. Using it will probably fix your problem.
Hi
i use =WeekdayName(Weekday([Data],2)) in a text box in a form thata
works
[quoted text clipped - 18 lines]
Thank you
Diego
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top