LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Week Number of the Year

Solved!
Go to solution

Does anyone know of a function that will return the correct "Week" of the year when you enter a date?

 

I'm referencing this website:

https://www.timeanddate.com/date/weeknumber.html

 

I found Labview's "Format Date/Time String" calculates week one as 00.  It's not as simple as increment by one.

See attached VISee attached VI

Anyway, is there any accurate way to repeat the correct Week Number of the Year? 

Thank you,

Doug

0 Kudos
Message 1 of 27
(6,890 Views)
Solution
Accepted by Dhubbell

%W: week number of the year (00–53), with the first Monday as the first day of week one; 00 represents the first week 

%U: week number of the year (00–53), with the first Sunday as the first day of week one; 00 represents the first week.

 

So use %U and increment by one.

 

(Next time be more friendly and attach a VI that does not span about 3 screens wide. You could use arrays to simplify the code dramatically. Way too much duplication currently, making testing difficult ;))

Message 2 of 27
(6,881 Views)
Solution
Accepted by Dhubbell

@altenbach wrote:

%W: week number of the year (00–53), with the first Monday as the first day of week one; 00 represents the first week 

%U: week number of the year (00–53), with the first Sunday as the first day of week one; 00 represents the first week.

 

So use %U and increment by one.


This works for this year, sure, but would fail on any year starting on a Sunday (2017, for instance).

Message 3 of 27
(6,874 Views)

Thank you!

0 Kudos
Message 4 of 27
(6,868 Views)

@Kyle97330 wrote:

@altenbach wrote:

%W: week number of the year (00–53), with the first Monday as the first day of week one; 00 represents the first week 

%U: week number of the year (00–53), with the first Sunday as the first day of week one; 00 represents the first week.

 

So use %U and increment by one.


This works for this year, sure, but would fail on any year starting on a Sunday (2017, for instance).


You're right.  It seems like LabVIEW help doesn't describe this behavior.  But week 1 seems to be the first FULL week of the year.  So Sunday 1/1/17 starts a full week, it gets a 1 with %U format.  Monday 1/1/18 starts a full week with %W format.  Those years seem to have no 0 week.

 

Enumerating weeks of a year is a very unusual thing to do anyway.  It is more so to approximate how many weeks apart 2 different dates are by adding or subtracting.

And you can argue as to whether there should ever be a week 0 or not, and what that means if it exists.  If the week of year format isn't working the way you want for whatever purpose you have, then just wrap it in a subVI that modifies the results to your needs.

Message 5 of 27
(6,866 Views)

Here's what I had in mind.

 

WOTY.png

Message 6 of 27
(6,861 Views)

I wasn't expecting answers so quickly, so I hacked my way around it.  I ended up adding one week and one day to get the correct week.  But, I'm sure it will be inaccurate at some point in time.

 

Wish there was an easier vi that simply took a date and gave the correct week year each and every time.

0 Kudos
Message 7 of 27
(6,858 Views)

@Kyle97330 wrote:
This works for this year, sure, but would fail on any year starting on a Sunday (2017, for instance).

Fortunately, LabVIEW is a programming language and we can work around such edge issues if needed 😄

Message 8 of 27
(6,855 Views)

The ISO 8601 standard for weeks states that “week 1” is the first week of the year with a Thursday in it.  Not sure if that's exactly what you want, but it would be nice if LabVIEW had that as an option.

 

If you are willing to use .NET there's an function that's more along the lines of what you need, with some configurable parameters to refine it:

get week of year snippet.png

Message 9 of 27
(6,851 Views)

Yes, I was reading up on the ISO definition. It's complicated. 😄

Message 10 of 27
(6,841 Views)